* libc/string/strsignal.c (strsignal): Avoid duplicate case statement where
SIGPWR == SIGLOST.
This commit is contained in:
parent
d3258e063c
commit
8f01c77516
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user