summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-10-25 10:45:26 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-10-25 13:50:33 +0100
commitdb02967f36ec7ac333f1564c7cd10f8a833e1927 (patch)
tree6e2bbf82db57cfaff1f8e1d3c942bc32fe048f6b /extensions
parenta5d6dca3e98ea1664be267c089a47766ce7e0a48 (diff)
WaE: unused variables
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/nsplugin/source/npshell.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/source/nsplugin/source/npshell.cxx b/extensions/source/nsplugin/source/npshell.cxx
index 1967a928deeb..b1208d722caf 100644
--- a/extensions/source/nsplugin/source/npshell.cxx
+++ b/extensions/source/nsplugin/source/npshell.cxx
@@ -120,10 +120,11 @@ long int NSP_WriteToPipe(NSP_PIPE_FD fp, void* buf, unsigned long int len)
len_unix = NSP_Write_Pipe(fp, buf, len, &len_wnt);
#ifdef UNIX
(void)len_wnt;
- return len_unix;
+ return len_unix;
#endif //end of UNIX
#ifdef WNT
- return len_wnt;
+ (void)len_unix;
+ return len_wnt;
#endif //end of WNT
}