Fixed an imbalanced paranethese.

This commit is contained in:
Dustin Barnard 2006-06-08 20:20:19 +00:00
parent 1fd3751a11
commit 08d305dea2
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ doIt(const MArgList &args) {
// On non-Windows (e.g. Unix), we just use the system function,
// which runs synchronously. We could fork a process, but no one's
// asked for this yet.
MString command = MString("pview " + pview_args + MString(" \"") + filename + MString("\"");
MString command = MString("pview " + pview_args + MString(" \"") + filename + MString("\""));
int command_result = system(command.asChar());
if (command_result != 0) {