From 70c47de7c8faacb588e75b6111fa7db591934260 Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 21 Nov 2015 17:37:45 +0100 Subject: [PATCH] Fixed: Typo --- code/nel/src/misc/common.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/nel/src/misc/common.cpp b/code/nel/src/misc/common.cpp index ceaae3d4b..a51851d87 100644 --- a/code/nel/src/misc/common.cpp +++ b/code/nel/src/misc/common.cpp @@ -742,7 +742,7 @@ bool launchProgram(const std::string &programName, const std::string &arguments, // // But it works fine on my GNU/Linux so I do this because it's easier :) and I don't know exactly // what to do to be portable. - signal(SIGCHLD,SIG_IGN); + signal(SIGCHLD, SIG_IGN); firstLaunchProgram = false; } @@ -771,7 +771,7 @@ bool launchProgram(const std::string &programName, const std::string &arguments, int status = vfork (); ///////////////////////////////////////////////////////// - /// WARNING : NO MORE INSTRCUTION AFTER VFORK ! + /// WARNING : NO MORE INSTRUCTION AFTER VFORK ! /// READ VFORK manual ///////////////////////////////////////////////////////// if (status == -1)