diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-05-19 05:26:21 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-05-19 05:26:21 -0500 |
commit | 1803f00c6e83e1d0d9d0c310e02425e9b48b38b1 (patch) | |
tree | 8cd9e2b2a5a15e676c07840f56293d444c17b980 /gatchat/ppp_net.c | |
parent | e7a590acfcb0b48c937ba72c7f12452da743ad82 (diff) |
ppp: Trivial whitespace error
Diffstat (limited to 'gatchat/ppp_net.c')
-rw-r--r-- | gatchat/ppp_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gatchat/ppp_net.c b/gatchat/ppp_net.c index a74c06ce..0b1d3a2d 100644 --- a/gatchat/ppp_net.c +++ b/gatchat/ppp_net.c @@ -106,7 +106,7 @@ static gboolean ppp_net_callback(GIOChannel *channel, GIOCondition cond, if (cond & G_IO_IN) { /* leave space to add PPP protocol field */ status = g_io_channel_read_chars(channel, buf, net->mtu, - &bytes_read, &error); + &bytes_read, &error); if (bytes_read > 0) ppp_transmit(net->ppp, (guint8 *) net->ppp_packet, bytes_read); |