mirror of git://sourceware.org/git/glibc.git
string: Fix prototype mismatch in sigabbrev_np, __sigdescr_np
GCC 6 does not ignore the const specifier on the return type.
This commit is contained in:
parent
beea361050
commit
5b2deed8a5
|
@ -20,7 +20,7 @@
|
|||
#include <signal.h>
|
||||
#include <array_length.h>
|
||||
|
||||
const char *const
|
||||
const char *
|
||||
sigabbrev_np (int signum)
|
||||
{
|
||||
const char *abbrev = NULL;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include <signal.h>
|
||||
#include <array_length.h>
|
||||
|
||||
const char *const
|
||||
const char *
|
||||
__sigdescr_np (int signum)
|
||||
{
|
||||
const char *descr = NULL;
|
||||
|
|
Loading…
Reference in New Issue