summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-08-03 23:09:51 +0200
committerRobin Gareus <robin@gareus.org>2015-08-03 23:09:51 +0200
commite057b873b52708326fb654d9bcbbf84b932c4b02 (patch)
tree5f8025e3a13c56dbe796644dc963e3b2ce692ec2
parente09c62052d31518c92a0a7a474a3743af1a01e07 (diff)
amend e09c620; now with semicolon :)
-rw-r--r--libs/pbd/system_exec.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/system_exec.cc b/libs/pbd/system_exec.cc
index 0602805db6..abe5fd2108 100644
--- a/libs/pbd/system_exec.cc
+++ b/libs/pbd/system_exec.cc
@@ -365,7 +365,7 @@ SystemExec::make_wargs(char **a) {
wa.append(" \"");
wa.append(*tmp);
if (strlen(*tmp) > 0 && (*tmp)[strlen(*tmp) - 1] == '\\') {
- wa.append("\\")
+ wa.append("\\");
}
wa.append("\"");
tmp++;