about summary refs log tree commit diff
path: root/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sysdeps/unix/sysv/linux/tile/makecontext.c')
-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)