diff options
author | Michaël Lefèvre <lefevre00@yahoo.fr> | 2014-04-07 16:10:57 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-08 11:18:19 +0200 |
commit | df2c663fef3435a8c3d541b364780876229ccd29 (patch) | |
tree | d3f92a558ba61261d724b7745bd06392ff6abb35 /registry | |
parent | 81e7f75f472e7264750de8063b32f4348a40a628 (diff) |
fdo#43157 [API CHANGE] Remove deprecated _OSL_GLOBAL
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Conflicts:
include/osl/diagnose.h
Change-Id: Ie2e6b7a8546318bdd8b81261bef46bf92c0c125f
Diffstat (limited to 'registry')
-rw-r--r-- | registry/test/regdiagnose.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/registry/test/regdiagnose.h b/registry/test/regdiagnose.h index 721db1d6c512..1ac6e92bb029 100644 --- a/registry/test/regdiagnose.h +++ b/registry/test/regdiagnose.h @@ -28,8 +28,8 @@ #define _REG_ENSURE(c, f, l, m) \ do \ { \ - if (!(c) && _OSL_GLOBAL osl_assertFailedLine(f, l, m)) \ - _OSL_GLOBAL osl_breakDebug(); \ + if (!(c) && :: osl_assertFailedLine(f, l, m)) \ + :: osl_breakDebug(); \ } while (0) |