summaryrefslogtreecommitdiff
path: root/ext/IPC/SysV
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@covalent.net>2001-02-18 05:08:04 -0800
committerJarkko Hietaniemi <jhi@iki.fi>2001-02-18 22:16:50 +0000
commit8063af025e8b11a3a92c708534a72a8c4fe60322 (patch)
tree73543e90c1f50fccd4b8b5803329f3df72f684f5 /ext/IPC/SysV
parent3baa4c62cda542368be1e7e1f7af8bd8257c2ff4 (diff)
downloadperl-8063af025e8b11a3a92c708534a72a8c4fe60322.tar.gz
[patch] -Wall cleanup round 2
Message-ID: <Pine.LNX.4.21.0102181304520.10021-100000@mako.covalent.net> p4raw-id: //depot/perl@8837
Diffstat (limited to 'ext/IPC/SysV')
-rw-r--r--ext/IPC/SysV/SysV.xs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/IPC/SysV/SysV.xs b/ext/IPC/SysV/SysV.xs
index 4a10eb90e3..c7985f99fe 100644
--- a/ext/IPC/SysV/SysV.xs
+++ b/ext/IPC/SysV/SysV.xs
@@ -194,7 +194,7 @@ PPCODE:
MODULE=IPC::SysV PACKAGE=IPC::SysV
-int
+void
ftok(path, id)
char * path
int id
@@ -206,7 +206,7 @@ ftok(path, id)
DIE(aTHX_ PL_no_func, "ftok");
#endif
-int
+void
SHMLBA()
CODE:
#ifdef SHMLBA
@@ -436,7 +436,7 @@ BOOT:
char *name;
int i;
- for(i = 0 ; name = IPC__SysV__const[i].n ; i++) {
+ for(i = 0 ; (name = IPC__SysV__const[i].n) ; i++) {
newCONSTSUB(stash,name, newSViv(IPC__SysV__const[i].v));
}
}