From 64001227607e0ea602b228f6fadd8efc90046450 Mon Sep 17 00:00:00 2001 From: Ruairidh MacLeod Date: Tue, 23 Jun 2020 13:52:15 +0100 Subject: [PATCH] SystemServer: Fix typo (exist -> exit) (#2615) Small typo that I noticed on the latest OS hacking video! --- Services/SystemServer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/SystemServer/main.cpp b/Services/SystemServer/main.cpp index 10cf54c9c0..7947427628 100644 --- a/Services/SystemServer/main.cpp +++ b/Services/SystemServer/main.cpp @@ -48,7 +48,7 @@ static void sigchld_handler(int) return; #ifdef SYSTEMSERVER_DEBUG - dbg() << "Reaped child with pid " << pid << ", exist status " << status; + dbg() << "Reaped child with pid " << pid << ", exit status " << status; #endif Service* service = Service::find_by_pid(pid);