From a8b10c2841bf38e0f4393594de9b61d9bd3cd842 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 7 Jan 2016 12:36:24 +0100 Subject: [PATCH] loplugin:nullptr Change-Id: I8c1ef744be34eea2130b458ed3a09d90804219cc --- sal/osl/unx/module.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(RTLD_DEFAULT); #else - *pResult = NULL; + *pResult = nullptr; #endif return sal_True; }