diff options
author | Oliver Braun <obr@openoffice.org> | 2001-04-09 13:45:13 +0000 |
---|---|---|
committer | Oliver Braun <obr@openoffice.org> | 2001-04-09 13:45:13 +0000 |
commit | bbdfd286e8c9b091a0d754f39b310bf0bb353f2e (patch) | |
tree | 82e535d8b7a86d941cb7a25b2af350668aca16f2 /sal/osl/unx/mutex.c | |
parent | 2c28a9f7d2061e0e34d665c2a26e26f27aa7659e (diff) |
fixed stupid typo
Diffstat (limited to 'sal/osl/unx/mutex.c')
-rw-r--r-- | sal/osl/unx/mutex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/unx/mutex.c b/sal/osl/unx/mutex.c index 9aa03995d..7472e044b 100644 --- a/sal/osl/unx/mutex.c +++ b/sal/osl/unx/mutex.c @@ -2,9 +2,9 @@ * * $RCSfile: mutex.c,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obr $ $Date: 2001-04-09 10:35:16 $ + * last change: $Author: obr $ $Date: 2001-04-09 14:45:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -311,7 +311,7 @@ oslMutex * SAL_CALL osl_getGlobalMutex() }; /* necessary to get a "oslMutex *" */ - static oslMutex const globalMutex = (oslMutex) &globalMutex; + static oslMutex const globalMutex = (oslMutex) &globalMutexImpl; return &globalMutex; } |