* libc/string/strsignal.c (strsignal): Avoid duplicate case statement where

SIGPWR == SIGLOST.
This commit is contained in:
Christopher Faylor 2010-05-18 14:52:38 +00:00
parent d3258e063c
commit 8f01c77516
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-05-18 Christopher Faylor <me+cygwin@cgf.cx>
* libc/string/strsignal.c (strsignal): Avoid duplicate case statement
where SIGPWR == SIGLOST.
2010-05-11 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/__call_atexit.c: Fix lock to be of type

View File

@ -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;