summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-03-27 09:51:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-03-27 09:51:51 +0100
commitd84142a4a44e522d1d23adcf0577d5bb567eab70 (patch)
treeaa907ab75d4b1a4d46e769914a5f1b3d0b5967a7 /extensions
parent7cab4ce3ba74b73b129d9932d58be7006afdac2f (diff)
Prevent duplicate definitions
Change-Id: I4cbc231bdac93ed3dca3fb6140c5c85e9eb4339d
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/nsplugin/source/nsp_func.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/nsplugin/source/nsp_func.hxx b/extensions/source/nsplugin/source/nsp_func.hxx
index 047a1ec8db59..1e99bbbc067a 100644
--- a/extensions/source/nsplugin/source/nsp_func.hxx
+++ b/extensions/source/nsplugin/source/nsp_func.hxx
@@ -76,7 +76,7 @@ typedef int NSP_PIPE_FD;
//for pipe()
typedef HANDLE NSP_PIPE_FD;
-SECURITY_ATTRIBUTES NSP_pipe_access = { sizeof(SECURITY_ATTRIBUTES), NULL, TRUE};
+static SECURITY_ATTRIBUTES NSP_pipe_access = { sizeof(SECURITY_ATTRIBUTES), NULL, TRUE};
#define NSP_Inherited_Pipe(fd) (!CreatePipe(&fd[0], &fd[1], &NSP_pipe_access, 1024*10))
#define NSP_Close_Pipe(fp) CloseHandle(fp)
//for write(), read()