about summary refs log tree commit diff
path: root/ports/sysdeps
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2012-07-10 10:35:27 -0400
committerChris Metcalf <cmetcalf@tilera.com>2012-07-10 10:38:18 -0400
commitba7fefc8e00d027e0298d180aecce0689f660329 (patch)
treed9ae3f92b31698188af88dadd2e900aa6ef44745 /ports/sysdeps
parent5f5bcf71f753089c82741578853c5c866d1839e1 (diff)
downloadglibc-ba7fefc8e00d027e0298d180aecce0689f660329.tar.gz
glibc-ba7fefc8e00d027e0298d180aecce0689f660329.tar.xz
glibc-ba7fefc8e00d027e0298d180aecce0689f660329.zip
tile: correct typo in comment
Diffstat (limited to 'ports/sysdeps')
-rw-r--r--ports/sysdeps/unix/sysv/linux/tile/makecontext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/sysdeps/unix/sysv/linux/tile/makecontext.c b/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
index e3f66bccb0..d7584e0724 100644
--- a/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
+++ b/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
@@ -61,7 +61,7 @@ __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...)
   /* Set the return address to trampoline.  */
   ucp->uc_mcontext.lr = (long) __startcontext;
 
-  /* Pass ucp->uc_link to __start_context in r30.  */
+  /* Pass ucp->uc_link to __startcontext in r30.  */
   ucp->uc_mcontext.gregs[30] = (long) ucp->uc_link;
 }
 weak_alias (__makecontext, makecontext)