From 864a142409dcf3339343fdff407332629ad07633 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 5 Nov 2004 10:30:54 +0000 Subject: [PATCH] r3547: fixed waitpid in fcntl_lock.c (thanks to jbm for pointing this out) --- source/build/tests/fcntl_lock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);