about summary refs log tree commit diff
path: root/malloc
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2023-06-02 03:40:12 +0000
committerPaul Pluzhnikov <ppluzhnikov@google.com>2023-06-02 23:46:32 +0000
commit2cbeda847bb58bfac73d2048e3e0300ff1b2b894 (patch)
treef22a04d6e72985be372db2b87876d351fc35e6c1 /malloc
parent7f0d9e61f40c669fca3cfd1e342fa8236c7220b7 (diff)
downloadglibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.tar.gz
glibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.tar.xz
glibc-2cbeda847bb58bfac73d2048e3e0300ff1b2b894.zip
Fix a few more typos I missed in previous round -- BZ 25337
Diffstat (limited to 'malloc')
-rw-r--r--malloc/tst-malloc-tcache-leak.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/tst-malloc-tcache-leak.c b/malloc/tst-malloc-tcache-leak.c
index a2a624f6d4..27b5ab2f24 100644
--- a/malloc/tst-malloc-tcache-leak.c
+++ b/malloc/tst-malloc-tcache-leak.c
@@ -42,7 +42,7 @@ worker (void *data)
   /* Allocate an arbitrary amount of memory that is known to fit into
      the thread local cache (tcache).  If we have at least 64 bins
      (default e.g. TCACHE_MAX_BINS) we should be able to allocate 32
-     bytes and force malloc to fill the tcache.  We are assuming tcahce
+     bytes and force malloc to fill the tcache.  We are assuming tcache
      init happens at the first small alloc, but it might in the future
      be deferred to some other point.  Therefore to future proof this
      test we include a full alloc/free/alloc cycle for the thread.  We