Make pointer in Log.cpp const to avoid deprecated conversion warning on gcc.

This commit is contained in:
Jason Watkins
2015-06-08 09:40:11 -07:00
parent e0200ce29e
commit efc99c3eae

View File

@@ -57,7 +57,7 @@ namespace XPC
static void WriteLevel(FILE* fd, int level)
{
char* str;
const char* str;
switch (level)
{
case LOG_OFF: