diff options
author | Max Horn | 2005-05-08 17:05:19 +0000 |
---|---|---|
committer | Max Horn | 2005-05-08 17:05:19 +0000 |
commit | 2eb868d2a3a89eb8f6d71ab6580e0a015552ccbc (patch) | |
tree | 96f1da7fd430c3f7597e72ec78c0ff882c93d5f6 /common | |
parent | 9d20c7e21f98b2f8824f86ef7c297781f46a7f49 (diff) | |
download | scummvm-rg350-2eb868d2a3a89eb8f6d71ab6580e0a015552ccbc.tar.gz scummvm-rg350-2eb868d2a3a89eb8f6d71ab6580e0a015552ccbc.tar.bz2 scummvm-rg350-2eb868d2a3a89eb8f6d71ab6580e0a015552ccbc.zip |
Fix doxygen warning
svn-id: r17969
Diffstat (limited to 'common')
-rw-r--r-- | common/mutex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/mutex.cpp b/common/mutex.cpp index b98ee91344..a8a095618c 100644 --- a/common/mutex.cpp +++ b/common/mutex.cpp @@ -45,7 +45,7 @@ void Mutex::unlock() { #pragma mark - -StackLock::StackLock(OSystem::MutexRef mutex, const char *mutexName) +StackLock::StackLock(MutexRef mutex, const char *mutexName) : _mutex(mutex), _mutexName(mutexName) { lock(); } |