Index: chromecast/base/process_utils.cc |
diff --git a/chromecast/base/process_utils.cc b/chromecast/base/process_utils.cc |
index 523fb1c697f0781667e17b51d450223a2833b4c5..9e379a05f52c67c96e027230c715c908bb220ad1 100644 |
--- a/chromecast/base/process_utils.cc |
+++ b/chromecast/base/process_utils.cc |
@@ -17,7 +17,7 @@ bool GetAppOutput(const std::vector<std::string>& argv, std::string* output) { |
DCHECK(output); |
// Join the args into one string, creating the command. |
- std::string command = JoinString(argv, ' '); |
+ std::string command = base::JoinString(argv, " "); |
// Open the process. |
FILE* fp = popen(command.c_str(), "r"); |