From 62cb4e14a6cdb0d836dfe8c06ce87ec65f026396 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 12 Mar 2013 14:50:40 +0100 Subject: [PATCH] Make mode variable const. --- lib/base/application.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/base/application.cpp b/lib/base/application.cpp index cfbc226ab..8c9c8b48e 100644 --- a/lib/base/application.cpp +++ b/lib/base/application.cpp @@ -463,9 +463,9 @@ void Application::UpdatePidFile(const String& filename) fclose(m_PidFile); #ifndef _WIN32 - char *mode = "r+"; + const char *mode = "r+"; #else /* _WIN32 */ - char *mode = "w"; + const char *mode = "w"; #endif /* _WIN32 */ /* There's just no sane way of getting a file descriptor for a