fix typos in d442190b
authorRobin Gareus <robin@gareus.org>
Sat, 13 Feb 2016 23:02:00 +0000 (00:02 +0100)
committerRobin Gareus <robin@gareus.org>
Sat, 13 Feb 2016 23:02:00 +0000 (00:02 +0100)
libs/pbd/system_exec.cc

index 6bedc44257c935d1fe80a8dd15e7b447649f96ac..0d0ab9fc1abdda26b69072ddd790a573b39c1483 100644 (file)
@@ -217,7 +217,7 @@ SystemExec::SystemExec (std::string command, const std::map<char, std::string> s
                        while (tmp.find("\"") != std::string::npos)
                                tmp.replace(s.find("\""), 1, "\\\"");
                        wa += " \"";
-                       wa += tmp
+                       wa += tmp;
                        wa += '"';
                }
                w_args = strdup(wa.c_str());
@@ -339,7 +339,7 @@ string
 SystemExec::to_s () const
 {
 #ifdef PLATFORM_WINDOWS
-       return string (w_args ? w_args :: "");
+       return string (w_args ? w_args : "");
 #else
        stringstream out;
        if (argp) {