Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ed0cae05
Commit
ed0cae05
authored
Oct 26, 1994
by
Richard M. Stallman
Browse files
(status_message): Add a cast.
(sigchld_handler): Add a cast.
parent
7a13e894
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/process.c
src/process.c
+4
-2
No files found.
src/process.c
View file @
ed0cae05
...
...
@@ -345,7 +345,8 @@ status_message (status)
if (code < NSIG)
{
#ifndef VMS
signame
=
sys_siglist
[
code
];
/* Cast to suppress warning if the table has const char *. */
signame = (char *) sys_siglist[code];
#else
signame = sys_errlist[code];
#endif
...
...
@@ -3107,7 +3108,8 @@ sigchld_handler (signo)
if (code < NSIG)
{
#ifndef VMS
signame
=
sys_siglist
[
code
];
/* Suppress warning if the table has const char *. */
signame = (char *) sys_siglist[code];
#else
signame = sys_errlist[code];
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment