Changed: Removed useless parameter for nlerror

--HG--
branch : develop
This commit is contained in:
kervala 2015-11-21 17:17:19 +01:00
parent 6c2490090d
commit 5a5dd33a9c

View file

@ -1000,7 +1000,7 @@ void CPatchManager::executeBatchFile()
if (execl(strCmdLine.c_str(), strCmdLine.c_str(), LoginLogin.c_str(), LoginPassword.c_str(), (char *) NULL) == -1) if (execl(strCmdLine.c_str(), strCmdLine.c_str(), LoginLogin.c_str(), LoginPassword.c_str(), (char *) NULL) == -1)
{ {
int errsv = errno; int errsv = errno;
nlerror("Execl Error: %d %s", errsv, strCmdLine.c_str(), (char *) NULL); nlerror("Execl Error: %d %s", errsv, strCmdLine.c_str());
} }
else else
{ {