Fixed the double mistake errant const, comma!
authortmccolm <tmccolm@cinecert.com>
Thu, 22 Dec 2016 06:42:03 +0000 (06:42 +0000)
committertmccolm <>
Thu, 22 Dec 2016 06:42:03 +0000 (06:42 +0000)
src/KM_fileio.cpp

index 231f3b851032e20bb1eec819b0efe1490c47d716..c2cef53dd95047fae7246acd6f716d8222173ba3 100644 (file)
@@ -666,7 +666,7 @@ Kumu::GetExecutablePath(const std::string& default_path)
   // This fails if the CWD changes after the program has started but before the
   // call to GetExecutablePath(). For least surprise, call GetExecutablePath()
   // immediately in main() and save the value for later use.
-  const,  char* p = getenv("_");
+  const  char* p = getenv("_");
   if ( p )
     {
       return Kumu::PathMakeAbsolute(p);