From a7c24ca48995cf2bf436156302f96b91bf135409 Mon Sep 17 00:00:00 2001 From: Goraf <22941576+Goraf@users.noreply.github.com> Date: Mon, 13 Nov 2017 15:03:31 +0100 Subject: Code modernize ... * replace 0/NULL with nullptr [using clang-tidy] --- plugins/SplashScreen/src/services.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/SplashScreen/src/services.cpp') diff --git a/plugins/SplashScreen/src/services.cpp b/plugins/SplashScreen/src/services.cpp index 8b9f6e4caf..efc798ba46 100644 --- a/plugins/SplashScreen/src/services.cpp +++ b/plugins/SplashScreen/src/services.cpp @@ -30,7 +30,7 @@ INT_PTR ShowSplashService(WPARAM wparam, LPARAM lparam) options.showtime = timetoshow; wchar_t *pos = wcsrchr(filename, ':'); - if (pos == NULL) + if (pos == nullptr) mir_snwprintf(szSplashFile, L"%s\\%s", szMirDir, filename); else mir_wstrcpy(szSplashFile, filename); -- cgit v1.2.3