From b2d885fece98dbb9ce8062c13e04d72ff8a76eb0 Mon Sep 17 00:00:00 2001 From: tmccolm Date: Thu, 22 Dec 2016 06:42:03 +0000 Subject: Fixed the double mistake errant const, comma! --- src/KM_fileio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/KM_fileio.cpp') diff --git a/src/KM_fileio.cpp b/src/KM_fileio.cpp index 231f3b8..c2cef53 100644 --- a/src/KM_fileio.cpp +++ b/src/KM_fileio.cpp @@ -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); -- cgit v1.2.3