[Libreoffice-commits] core.git: sal/osl
Stephan Bergmann
sbergman at redhat.com
Thu Jan 7 03:36:47 PST 2016
sal/osl/unx/module.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit a8b10c2841bf38e0f4393594de9b61d9bd3cd842
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Thu Jan 7 12:36:24 2016 +0100
loplugin:nullptr
Change-Id: I8c1ef744be34eea2130b458ed3a09d90804219cc
diff --git a/sal/osl/unx/module.cxx b/sal/osl/unx/module.cxx
index df00861..71a7c0d 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;
}
More information about the Libreoffice-commits
mailing list