diff options
author | David Tardon <dtardon@redhat.com> | 2012-05-06 13:52:07 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-05-06 19:51:38 +0200 |
commit | 30115a0e78cba478562f183fe06da025b3f44936 (patch) | |
tree | 4f0a47223815f12da40fa90d07e02c95d132a083 /extensions | |
parent | 7169b1b308131e4c9c75efd49544989e1d82a573 (diff) |
WaE: NULL used in arithmetic
Change-Id: I89352cd2ae1d5517dff38294ff2bb53d39aadb8d
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/nsplugin/source/npshell.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 |