summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-14 00:02:00 +0100
committerRobin Gareus <robin@gareus.org>2016-02-14 00:02:00 +0100
commit09167d3e5964b5a60ddc67f7934edb1c4fc6ec4e (patch)
tree89751d3cba1460b2a7becbff74ddd9d36a92e33b
parent48532baaa7eeda99e9b5ea880f52308570dc3181 (diff)
fix typos in d442190b
-rw-r--r--libs/pbd/system_exec.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/pbd/system_exec.cc b/libs/pbd/system_exec.cc
index 6bedc44257..0d0ab9fc1a 100644
--- a/libs/pbd/system_exec.cc
+++ b/libs/pbd/system_exec.cc
@@ -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) {