# HG changeset patch # User Matthew Wild # Date 1228605755 0 # Node ID e743cb742ca6324e86617df61ee8274b9245d0f1 # Parent 43f509a1519a7c74c9229171ed05aec3592b231d Remove some debugging from pposix.c diff -r 43f509a1519a -r e743cb742ca6 util-src/pposix.c --- a/util-src/pposix.c Sat Dec 06 23:21:55 2008 +0000 +++ b/util-src/pposix.c Sat Dec 06 23:22:35 2008 +0000 @@ -53,13 +53,11 @@ else if(pid != 0) { /* We are the parent process */ - printf("We are the parent, pid of child is %d\n", (int)pid); lua_pushboolean(L, 1); lua_pushnumber(L, pid); return 2; } - printf("We are the child, pid reports %d\n", (int)pid); /* and we are the child process */ if(setsid() == -1) {