From: Jarkko Hietaniemi Date: Wed, 12 Dec 2001 00:22:16 +0000 (+0000) Subject: This time I test compiled. Honest. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=30410c71a1b43e0c20155ea024aba695beef72dd;p=p5sagit%2Fp5-mst-13.2.git This time I test compiled. Honest. p4raw-id: //depot/perl@13636 --- diff --git a/beos/beos.c b/beos/beos.c index a9f6f38..ca56203 100644 --- a/beos/beos.c +++ b/beos/beos.c @@ -1,3 +1,5 @@ +#include "beosish.h" + #undef waitpid #include @@ -9,8 +11,8 @@ * of this, though.) */ pid_t beos_waitpid(pid_t process_id, int *status_location, int options) { - pid_t got = waitpid(procedd_is, status_location, options); + pid_t got = waitpid(process_id, status_location, options); if (status_location) - *status_location <<= 8; + *status_location <<= 8; /* What about the POSIX low bits? */ return got; }