mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 21:41:25 +00:00
os: fix compiler warning "too few arguments to format"
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
@@ -136,8 +136,8 @@ OsSigHandler(int signo)
|
||||
|
||||
#ifdef SA_SIGINFO
|
||||
if (sip->si_code == SI_USER) {
|
||||
ErrorF("Recieved signal %d sent by process %ld, uid %ld\n",
|
||||
(long) sip->si_pid, (long) sip->si_uid);
|
||||
ErrorF("Recieved signal %ld sent by process %ld, uid %ld\n",
|
||||
(long) sip->si_code, (long) sip->si_pid, (long) sip->si_uid);
|
||||
} else {
|
||||
switch (signo) {
|
||||
case SIGSEGV:
|
||||
|
||||
Reference in New Issue
Block a user