Fix typos in filetools.cpp.

This commit is contained in:
Thibaut Cuvelier 2020-10-13 00:33:05 +02:00
parent 82ea3d67ec
commit 769578eac6

View File

@ -1093,7 +1093,7 @@ cmd_ret const runCommand(string const & cmd)
// (Claus Hentschel) Check if popen was successful ;-) // (Claus Hentschel) Check if popen was successful ;-)
if (!inf) { if (!inf) {
lyxerr << "RunCommand:: could not start child process" << endl; lyxerr << "RunCommand: could not start child process" << endl;
return { false, string() }; return { false, string() };
} }
@ -1125,7 +1125,7 @@ cmd_ret const runCommand(string const & cmd)
#endif #endif
if (!valid) if (!valid)
perror("RunCommand:: could not terminate child process"); perror("RunCommand: could not terminate child process");
return { valid, result }; return { valid, result };
} }