aboutsummaryrefslogtreecommitdiff
path: root/common/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/util.h')
-rw-r--r--common/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/util.h b/common/util.h
index e05cc12c71..7d5ad4ffbc 100644
--- a/common/util.h
+++ b/common/util.h
@@ -81,12 +81,12 @@ public:
class StackLock {
OSystem::MutexRef _mutex;
OSystem *_syst;
- char *_mutexName;
+ const char *_mutexName;
void lock();
void unlock();
public:
- StackLock(OSystem::MutexRef mutex, OSystem *syst = 0, char *mutexName = NULL);
+ StackLock(OSystem::MutexRef mutex, OSystem *syst = 0, const char *mutexName = NULL);
~StackLock();
};