Revision
1210
Author
pthomson@apple.com
Date
2009-03-27 12:40:37 -0700 (Fri, 27 Mar 2009)

Log Message

Whoops. Forgot a parenthesis.

Modified Paths

Diff

Modified: MacRuby/branches/experimental/io.c (1209 => 1210)


--- MacRuby/branches/experimental/io.c	2009-03-27 19:35:10 UTC (rev 1209)
+++ MacRuby/branches/experimental/io.c	2009-03-27 19:40:37 UTC (rev 1210)
@@ -210,7 +210,7 @@
 	} while (pid == -1 && errno == EINTR);
 
 	/* Remove the entry from the linked list. */
-	if (last == NULL
+	if (last == NULL)
 		pidlist = cur->next;
 	else
 		last->next = cur->next;