diff options
| author | tmccolm <tmccolm@cinecert.com> | 2016-12-22 06:42:03 +0000 |
|---|---|---|
| committer | tmccolm <> | 2016-12-22 06:42:03 +0000 |
| commit | b2d885fece98dbb9ce8062c13e04d72ff8a76eb0 (patch) | |
| tree | 1b9211c7035175395e4dad815785e3082c5ace93 /src/KM_fileio.cpp | |
| parent | a494644d6262de7323bec16f7a8fe39df4ea757e (diff) | |
Fixed the double mistake errant const, comma!
Diffstat (limited to 'src/KM_fileio.cpp')
| -rw-r--r-- | src/KM_fileio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
