mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
fix typos in d442190b
This commit is contained in:
parent
48532baaa7
commit
09167d3e59
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue