about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2012-01-07 11:49:33 -0500
committerUlrich Drepper <drepper@gmail.com>2012-01-07 11:49:33 -0500
commit305502f69d417f7599ea18cceca280ee87627696 (patch)
tree3025d814d5d77415170af622852e809816f0c333
parente40bca1ef963f9f6a6dc9e8379391115bb9c756f (diff)
downloadglibc-305502f69d417f7599ea18cceca280ee87627696.tar.gz
glibc-305502f69d417f7599ea18cceca280ee87627696.tar.xz
glibc-305502f69d417f7599ea18cceca280ee87627696.zip
Fix up a comment
-rw-r--r--sysdeps/x86_64/backtrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/x86_64/backtrace.c b/sysdeps/x86_64/backtrace.c
index af65179203..7542eb4919 100644
--- a/sysdeps/x86_64/backtrace.c
+++ b/sysdeps/x86_64/backtrace.c
@@ -109,7 +109,7 @@ __backtrace (array, size)
   if (size >= 1)
     unwind_backtrace (backtrace_helper, &arg);
 
-  /* _Unwind_Backtrace on IA-64 seems to put NULL address above
+  /* _Unwind_Backtrace seems to put NULL address above
      _start.  Fix it up here.  */
   if (arg.cnt > 1 && arg.array[arg.cnt - 1] == NULL)
     --arg.cnt;