blob: 5134f30e581bc063d0a5d6d60ae9b9f5aedf61d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/common/gst-tool.c.orig Thu Mar 10 14:39:54 2005
+++ src/common/gst-tool.c Thu Mar 10 14:40:00 2005
@@ -1653,7 +1653,7 @@ poll_backend (GstTool *tool)
struct pollfd fd;
fd.fd = tool->read_fd;
- fd.events = POLLIN || POLLPRI;
+ fd.events = POLLIN | POLLPRI;
while (poll (&fd, 1, 100) <= 0) {
while (gtk_events_pending ())
|