* 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>
|
2010-05-11 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/stdlib/__call_atexit.c: Fix lock to be of type
|
* libc/stdlib/__call_atexit.c: Fix lock to be of type
|
||||||
|
|
|
@ -242,7 +242,7 @@ _DEFUN (strsignal, (signal),
|
||||||
buffer = "Profiling timer expired";
|
buffer = "Profiling timer expired";
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#ifdef SIGLOST
|
#if defined(SIGLOST) && SIGLOST != SIGPWR
|
||||||
case SIGLOST:
|
case SIGLOST:
|
||||||
buffer = "Resource lost";
|
buffer = "Resource lost";
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue