|
From: Yoda-JM <yo...@us...> - 2009-08-16 14:05:25
|
Module: performous
Branch: master
Commit: 71635ad684e0636672f58a71618f9cd8b0bfad4c
Author: Vincent Le Ligeour <yo...@us...>
Date: Sun Aug 16 16:04:00 2009 +0200
Fixed missing quotes
---
tools/ss_extract.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/ss_extract.cpp b/tools/ss_extract.cpp
index a27132c..83e7699 100644
--- a/tools/ss_extract.cpp
+++ b/tools/ss_extract.cpp
@@ -335,7 +335,7 @@ struct Process {
if (std::system(cmd.c_str()) == 0) { // FIXME: std::system return value is not portable
fs::remove(path / "music.wav");
}
- cmd = "oggenc \"" + (path / "vocals.wav").string();
+ cmd = "oggenc \"" + (path / "vocals.wav").string() + "\"";
std::cerr << cmd << std::endl;
if (std::system(cmd.c_str()) == 0) { // FIXME: std::system return value is not portable
fs::remove(path / "vocals.wav");
|