PATCH: Restore "Can't declare scalar dereference in my" error
[p5sagit/p5-mst-13.2.git] / beos / beos.c
index a9f6f38..d5f7fba 100644 (file)
@@ -1,3 +1,5 @@
+#include "beos/beosish.h"
+
 #undef waitpid
 
 #include <sys/wait.h>
@@ -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;
 }