mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-13 01:56:34 +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)
|
while (tmp.find("\"") != std::string::npos)
|
||||||
tmp.replace(s.find("\""), 1, "\\\"");
|
tmp.replace(s.find("\""), 1, "\\\"");
|
||||||
wa += " \"";
|
wa += " \"";
|
||||||
wa += tmp
|
wa += tmp;
|
||||||
wa += '"';
|
wa += '"';
|
||||||
}
|
}
|
||||||
w_args = strdup(wa.c_str());
|
w_args = strdup(wa.c_str());
|
||||||
|
|
@ -339,7 +339,7 @@ string
|
||||||
SystemExec::to_s () const
|
SystemExec::to_s () const
|
||||||
{
|
{
|
||||||
#ifdef PLATFORM_WINDOWS
|
#ifdef PLATFORM_WINDOWS
|
||||||
return string (w_args ? w_args :: "");
|
return string (w_args ? w_args : "");
|
||||||
#else
|
#else
|
||||||
stringstream out;
|
stringstream out;
|
||||||
if (argp) {
|
if (argp) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue