diff options
author | DJ Delorie <dj@delorie.com> | 2001-10-07 17:24:36 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2001-10-07 17:24:36 +0000 |
commit | 5849f895508122d117627bfddf595a51eedab5c0 (patch) | |
tree | b60cf6a44d847600bfe9337c565df06e95d20694 /libiberty/strsignal.c | |
parent | 6aaed9d2f5048ee39103ba0782588562e726d98d (diff) | |
download | gdb-5849f895508122d117627bfddf595a51eedab5c0.tar.gz |
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 2533adce297..85639f98814 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 }; |