about summary refs log tree commit diff
path: root/stdio-common/psignal.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/psignal.c')
-rw-r--r--stdio-common/psignal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/psignal.c b/stdio-common/psignal.c
index de45e52734..1f217a3332 100644
--- a/stdio-common/psignal.c
+++ b/stdio-common/psignal.c
@@ -34,7 +34,7 @@ psignal (int sig, const char *s)
   else
     colon = ": ";
 
-  if (sig >= 0 && sig < NSIG && (desc = _sys_siglist[sig]) != NULL)
+  if (sig >= 0 && sig < NSIG && (desc = __sys_siglist[sig]) != NULL)
     (void) __fxprintf (NULL, "%s%s%s\n", s, colon, _(desc));
   else
     {