COMP: ignore return value

This commit is contained in:
mattijs
2010-08-19 15:42:29 +01:00
parent 28410e24ed
commit aa7fe837f5
2 changed files with 8 additions and 4 deletions

View File

@ -1171,7 +1171,11 @@ int main(int argc, char *argv[])
+ "_"
+ procFile.name()
);
system(cmd.c_str());
if (system(cmd.c_str()) == -1)
{
WarningIn(args.executable())
<< "Could not execute command " << cmd << endl;
}
}
}
}