From 08d305dea29f96f58df8421e0db7cc586b45fab2 Mon Sep 17 00:00:00 2001 From: Dustin Barnard Date: Thu, 8 Jun 2006 20:20:19 +0000 Subject: [PATCH] Fixed an imbalanced paranethese. --- pandatool/src/mayaprogs/mayaSavePview.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandatool/src/mayaprogs/mayaSavePview.cxx b/pandatool/src/mayaprogs/mayaSavePview.cxx index 7570cb0435..be76ee2a09 100644 --- a/pandatool/src/mayaprogs/mayaSavePview.cxx +++ b/pandatool/src/mayaprogs/mayaSavePview.cxx @@ -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) {