aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-09-13 08:58:31 +0000
committerGravatar Brendan Taylor <whateley@gmail.com>2011-09-13 08:58:31 +0000
commit3195076ec3747d0ef7be02584a3fdaac598a0dd1 (patch)
tree1271c84267d5c70afa9c1d68013a789b2a6a1f2e /src
parent6f8078781480ba1f08a9dcf9b6630b8f78641507 (diff)
remove a particularly useless verbose message
Diffstat (limited to 'src')
-rw-r--r--src/io.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/io.c b/src/io.c
index 062a853..b16b583 100644
--- a/src/io.c
+++ b/src/io.c
@@ -26,8 +26,6 @@ build_stream_name(int type, const gchar* dir) {
gboolean
control_fifo(GIOChannel *gio, GIOCondition condition) {
- if (uzbl.state.verbose)
- printf("triggered\n");
gchar *ctl_line;
GIOStatus ret;
GError *err = NULL;
@@ -36,7 +34,7 @@ control_fifo(GIOChannel *gio, GIOCondition condition) {
g_error ("Fifo: Read end of pipe died!\n");
if(!gio)
- g_error ("Fifo: GIOChannel broke\n");
+ g_error ("Fifo: GIOChannel broke\n");
ret = g_io_channel_read_line(gio, &ctl_line, NULL, NULL, &err);
if (ret == G_IO_STATUS_ERROR) {