diff options
author | DJ Delorie <dj@redhat.com> | 2001-10-07 17:24:36 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-10-07 17:24:36 +0000 |
commit | e6450fe56177c2ce3faf4601ed4a3edf42cd90eb (patch) | |
tree | ac07269b8f13ae4260a052cceae08934571c5a96 /libiberty/strsignal.c | |
parent | 6ce8b3699c614ee2f4e2deb7259886a1ca10a0a5 (diff) | |
download | gdb-e6450fe56177c2ce3faf4601ed4a3edf42cd90eb.zip gdb-e6450fe56177c2ce3faf4601ed4a3edf42cd90eb.tar.gz gdb-e6450fe56177c2ce3faf4601ed4a3edf42cd90eb.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/strsignal.c')
-rw-r--r-- | libiberty/strsignal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libiberty/strsignal.c b/libiberty/strsignal.c index 2533adc..85639f9 100644 --- a/libiberty/strsignal.c +++ b/libiberty/strsignal.c @@ -67,10 +67,10 @@ static void init_signal_tables PARAMS ((void)); struct signal_info { - int value; /* The numeric value from <signal.h> */ - const char *name; /* The equivalent symbolic value */ + const int value; /* The numeric value from <signal.h> */ + const char *const name; /* The equivalent symbolic value */ #ifndef HAVE_SYS_SIGLIST - const char *msg; /* Short message about this value */ + const char *const msg; /* Short message about this value */ #endif }; |