diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-07 12:36:24 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-07 12:36:24 +0100 |
commit | a8b10c2841bf38e0f4393594de9b61d9bd3cd842 (patch) | |
tree | c14b7703891a59d200f62ee0c8beefd0b8cd0673 /sal | |
parent | 73c13ac221b4bea0b8aacacc9d1633be594ff8b7 (diff) |
loplugin:nullptr
Change-Id: I8c1ef744be34eea2130b458ed3a09d90804219cc
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/module.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/module.cxx b/sal/osl/unx/module.cxx index df0086140baa..71a7c0dace3d 100644 --- a/sal/osl/unx/module.cxx +++ b/sal/osl/unx/module.cxx @@ -208,7 +208,7 @@ osl_getModuleHandle(rtl_uString *, oslModule *pResult) #if !defined(DISABLE_DYNLOADING) || defined(IOS) *pResult = static_cast<oslModule>(RTLD_DEFAULT); #else - *pResult = NULL; + *pResult = nullptr; #endif return sal_True; } |