Make mode variable const.

This commit is contained in:
Gunnar Beutner 2013-03-12 14:50:40 +01:00
parent ba71eba410
commit 62cb4e14a6
1 changed files with 2 additions and 2 deletions

View File

@ -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