* Shut up a GCC warning.

This commit is contained in:
Eelco Dolstra 2009-03-23 13:52:52 +00:00
parent cacff1be88
commit 3a87163b24
1 changed files with 2 additions and 2 deletions

View File

@ -112,11 +112,11 @@ static void sigPollHandler(int sigNo)
_isInterrupted = 1; _isInterrupted = 1;
blockInt = 1; blockInt = 1;
canSendStderr = false; canSendStderr = false;
char * s = "SIGPOLL\n"; const char * s = "SIGPOLL\n";
write(STDERR_FILENO, s, strlen(s)); write(STDERR_FILENO, s, strlen(s));
} }
} else { } else {
char * s = "spurious SIGPOLL\n"; const char * s = "spurious SIGPOLL\n";
write(STDERR_FILENO, s, strlen(s)); write(STDERR_FILENO, s, strlen(s));
} }
} }