about summary refs log tree commit diff
path: root/debug
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-08-22 07:04:23 +0000
committerUlrich Drepper <drepper@redhat.com>2007-08-22 07:04:23 +0000
commit682e4437a0784a917bc2df89a6b7d5cbfdefc8a0 (patch)
tree4ab183a381efde9b07e81d2ae5b87f121357c0a6 /debug
parent7d55c9eb43b69bf515f7ea7f828dc0edb9d4f501 (diff)
downloadglibc-682e4437a0784a917bc2df89a6b7d5cbfdefc8a0.tar.gz
glibc-682e4437a0784a917bc2df89a6b7d5cbfdefc8a0.tar.xz
glibc-682e4437a0784a917bc2df89a6b7d5cbfdefc8a0.zip
[BZ #4582]
	* debug/segfault.c: Fix typos in comments.
Diffstat (limited to 'debug')
-rw-r--r--debug/segfault.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/debug/segfault.c b/debug/segfault.c
index f141fff661..413f207207 100644
--- a/debug/segfault.c
+++ b/debug/segfault.c
@@ -1,5 +1,5 @@
 /* Catch segmentation faults and print backtrace.
-   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2007
    Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
@@ -42,7 +42,7 @@
 /* Get code to possibly dump the content of all registers.  */
 #include <register-dump.h>
 
-/* We'll use tis a lot.  */
+/* We'll use this a lot.  */
 #define WRITE_STRING(s) write (fd, s, strlen (s))
 
 /* Name of the output file.  */
@@ -67,7 +67,7 @@ write_strsignal (int fd, int signal)
 
 
 /* This function is called when a segmentation fault is caught.  The system
-   is in an instable state now.  This means especially that malloc() might
+   is in an unstable state now.  This means especially that malloc() might
    not work anymore.  */
 static void
 catch_segfault (int signal, SIGCONTEXT ctx)