about summary refs log tree commit diff
path: root/src/libutil/util.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-09T08·50+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-09T08·54+0200
commit7c4501886d01bfc0c3681201e194cdddfad8595a (patch)
tree2ad788c820b1c1c4b3f724ed7add4de7a0a17210 /src/libutil/util.cc
parentf2b67fbf2ab7de68ee2e7c12ea090c8190e9546f (diff)
Use std::vector::data()
Diffstat (limited to 'src/libutil/util.cc')
-rw-r--r--src/libutil/util.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc
index 5cda9a0677..903b97100b 100644
--- a/src/libutil/util.cc
+++ b/src/libutil/util.cc
@@ -927,10 +927,10 @@ pid_t startProcess(std::function<void()> fun, const ProcessOptions & options)
 }
 
 
-std::vector<const char *> stringsToCharPtrs(const Strings & ss)
+std::vector<char *> stringsToCharPtrs(const Strings & ss)
 {
-    std::vector<const char *> res;
-    for (auto & s : ss) res.push_back(s.c_str());
+    std::vector<char *> res;
+    for (auto & s : ss) res.push_back((char *) s.c_str());
     res.push_back(0);
     return res;
 }
@@ -957,12 +957,11 @@ string runProgram(Path program, bool searchPath, const Strings & args,
 
         Strings args_(args);
         args_.push_front(program);
-        auto cargs = stringsToCharPtrs(args_);
 
         if (searchPath)
-            execvp(program.c_str(), (char * *) &cargs[0]);
+            execvp(program.c_str(), stringsToCharPtrs(args_).data());
         else
-            execv(program.c_str(), (char * *) &cargs[0]);
+            execv(program.c_str(), stringsToCharPtrs(args_).data());
 
         throw SysError(format("executing ‘%1%’") % program);
     });