diff options
author | Christopher Faylor <me@cgf.cx> | 2010-05-18 14:52:38 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2010-05-18 14:52:38 +0000 |
commit | 8f01c775162c36a092f044a26985f17f6c218662 (patch) | |
tree | 8727e8d00233945dfb248abdacc78960803af8e9 /newlib/libc/string/strsignal.c | |
parent | d3258e063cb0a4fc77a76df3c91ba9841ca4971c (diff) | |
download | cygnal-8f01c775162c36a092f044a26985f17f6c218662.tar.gz cygnal-8f01c775162c36a092f044a26985f17f6c218662.tar.bz2 cygnal-8f01c775162c36a092f044a26985f17f6c218662.zip |
* libc/string/strsignal.c (strsignal): Avoid duplicate case statement where
SIGPWR == SIGLOST.
Diffstat (limited to 'newlib/libc/string/strsignal.c')
-rw-r--r-- | newlib/libc/string/strsignal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/strsignal.c b/newlib/libc/string/strsignal.c index 6d39e8b75..e03c1086b 100644 --- a/newlib/libc/string/strsignal.c +++ b/newlib/libc/string/strsignal.c @@ -242,7 +242,7 @@ _DEFUN (strsignal, (signal), buffer = "Profiling timer expired"; break; #endif -#ifdef SIGLOST +#if defined(SIGLOST) && SIGLOST != SIGPWR case SIGLOST: buffer = "Resource lost"; break; |