diff options
-rw-r--r-- | gatchat/gatppp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gatchat/gatppp.c b/gatchat/gatppp.c index 74bd2658..fd0a3f41 100644 --- a/gatchat/gatppp.c +++ b/gatchat/gatppp.c @@ -636,7 +636,7 @@ static gboolean ppp_xmit_cb(GIOChannel *channel, GIOCondition cond, while ((fb = g_queue_peek_head(ppp->xmit_queue))) { status = g_io_channel_write_chars(ppp->modem, (gchar *) fb->bytes, fb->len, - &bytes_written, &error); + &bytes_written, &error); if (status != G_IO_STATUS_NORMAL && status != G_IO_STATUS_AGAIN) return FALSE; |