diff options
Diffstat (limited to 'sysutils/gnomesystemtools/files/patch-src_common_gst-tool.c')
-rw-r--r-- | sysutils/gnomesystemtools/files/patch-src_common_gst-tool.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/gnomesystemtools/files/patch-src_common_gst-tool.c b/sysutils/gnomesystemtools/files/patch-src_common_gst-tool.c new file mode 100644 index 000000000000..5134f30e581b --- /dev/null +++ b/sysutils/gnomesystemtools/files/patch-src_common_gst-tool.c @@ -0,0 +1,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 ()) |