SystemServer: Fix typo (exist -> exit) (#2615)

Small typo that I noticed on the latest OS hacking video!
This commit is contained in:
Ruairidh MacLeod 2020-06-23 13:52:15 +01:00 committed by GitHub
parent c74b5fd798
commit 6400122760
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: sideshowbarker 2024-07-19 05:25:51 +09:00

View file

@ -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);