From 30115a0e78cba478562f183fe06da025b3f44936 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Sun, 6 May 2012 13:52:07 +0200 Subject: WaE: NULL used in arithmetic Change-Id: I89352cd2ae1d5517dff38294ff2bb53d39aadb8d --- extensions/source/nsplugin/source/npshell.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extensions/source') diff --git a/extensions/source/nsplugin/source/npshell.cxx b/extensions/source/nsplugin/source/npshell.cxx index c4065b6b6e95..e9aae6561a84 100644 --- a/extensions/source/nsplugin/source/npshell.cxx +++ b/extensions/source/nsplugin/source/npshell.cxx @@ -746,7 +746,7 @@ NPP_StreamAsFile(NPP instance, NPStream *stream, const char* fname) if(0 != strcmp(fname, localPathNew)) { #ifdef WNT - if(NULL == CopyFile(fname, localPathNew, FALSE)) + if(FALSE == CopyFile(fname, localPathNew, FALSE)) return; #endif //end of WNT -- cgit