From 0c7109f3215378bb3ed6c00c71129a63ffb4e787 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 8 Oct 2012 14:18:02 +1000 Subject: [PATCH] os: fix typo in OsSigHandler() error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recieved → Received Reviewed-by: Peter Hutterer Signed-off-by: Peter Hutterer --- os/osinit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/osinit.c b/os/osinit.c index 2eb1f7a8f..45ab5271b 100644 --- a/os/osinit.c +++ b/os/osinit.c @@ -129,7 +129,7 @@ OsSigHandler(int signo) #ifdef SA_SIGINFO if (sip->si_code == SI_USER) { - ErrorFSigSafe("Recieved signal %u sent by process %u, uid %u\n", signo, + ErrorFSigSafe("Received signal %u sent by process %u, uid %u\n", signo, sip->si_pid, sip->si_uid); } else {