Don't do < 0 on an unsigned value

It won't work. read() returns a signed value, anyway.
This commit is contained in:
Matthias Clasen 2011-06-14 11:40:32 -04:00
parent 25a797fa25
commit 01e6cf1360

View File

@ -42,7 +42,7 @@ watch_parent (gint fd)
GPollFD fds[1];
gint num_events;
gchar buf[512];
guint bytes_read;
gssize bytes_read;
GArray *buses_to_kill_array;
fds[0].fd = fd;