* strsignal.c (psignal): Change second parameter to const char *.

Fix comment accordingly.
This commit is contained in:
Corinna Vinschen 2011-05-17 16:14:52 +00:00
parent 84bff83f79
commit fe817eb1a3
2 changed files with 7 additions and 2 deletions

View file

@ -538,7 +538,7 @@ strtosigno (const char *name)
/*
@deftypefn Supplemental void psignal (int @var{signo}, char *@var{message})
@deftypefn Supplemental void psignal (int @var{signo}, const char *@var{message})
Print @var{message} to the standard error, followed by a colon,
followed by the description of the signal specified by @var{signo},
@ -551,7 +551,7 @@ followed by a newline.
#ifndef HAVE_PSIGNAL
void
psignal (int signo, char *message)
psignal (int signo, const char *message)
{
if (signal_names == NULL)
{