Changed: Removed useless parameter for nlerror

This commit is contained in:
kervala 2015-11-21 17:17:19 +01:00
parent df382464d8
commit 953e7b3df6

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)
{
int errsv = errno;
nlerror("Execl Error: %d %s", errsv, strCmdLine.c_str(), (char *) NULL);
nlerror("Execl Error: %d %s", errsv, strCmdLine.c_str());
}
else
{