summaryrefslogtreecommitdiffstats
path: root/source/build/tests
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-11-05 10:30:54 +0000
committerAndrew Tridgell <tridge@samba.org>2004-11-05 10:30:54 +0000
commite5e1a62a270128868d8413b6ba58fb05d4f9ae0d (patch)
tree6647d4ca3c0898324361b112f3e61a32461c0b3c /source/build/tests
parentdced0cf4b9edd72f2b7cfba04c9043e5ff7d775a (diff)
downloadsamba-e5e1a62a270128868d8413b6ba58fb05d4f9ae0d.tar.gz
samba-e5e1a62a270128868d8413b6ba58fb05d4f9ae0d.tar.xz
samba-e5e1a62a270128868d8413b6ba58fb05d4f9ae0d.zip
r3547: fixed waitpid in fcntl_lock.c (thanks to jbm for pointing this out)
Diffstat (limited to 'source/build/tests')
-rw-r--r--source/build/tests/fcntl_lock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/build/tests/fcntl_lock.c b/source/build/tests/fcntl_lock.c
index 089c3c84241..ffd1ee69fab 100644
--- a/source/build/tests/fcntl_lock.c
+++ b/source/build/tests/fcntl_lock.c
@@ -89,7 +89,7 @@ int main(int argc, char *argv[])
/* set a 4 byte write lock */
fcntl(fd,F_SETLK,&lock);
- sys_waitpid(pid, &status, 0);
+ waitpid(pid, &status, 0);
unlink(DATA);