diff options
Diffstat (limited to 'docs/examples/ghiper.c')
-rw-r--r-- | docs/examples/ghiper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/ghiper.c b/docs/examples/ghiper.c index 91c99e808..fd643fc3a 100644 --- a/docs/examples/ghiper.c +++ b/docs/examples/ghiper.c @@ -345,7 +345,7 @@ static gboolean fifo_cb(GIOChannel *ch, GIOCondition condition, gpointer data) g_free(buf); } else { - buf = g_malloc(BUF_SIZE+1); + buf = g_malloc(BUF_SIZE + 1); while(TRUE) { buf[BUF_SIZE]='\0'; g_io_channel_read_chars(ch, buf, BUF_SIZE, &len, &err); |