diff options
author | Kristen Carlson Accardi <kristen@linux.intel.com> | 2010-03-24 21:41:52 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-03-25 06:50:10 -0700 |
commit | bde388e0d55dff8570b6e2e3afa352921362232f (patch) | |
tree | c966595febc53138e84fca45ff99df1b2cddb8cc | |
parent | 060a195432144e51ae4b79255e7224c1f0572981 (diff) | |
download | ofono-bde388e0d55dff8570b6e2e3afa352921362232f.tar.bz2 |
remove unneeded debug statement
cleanup old debug print statement
-rw-r--r-- | gatchat/ppp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gatchat/ppp.c b/gatchat/ppp.c index 46129765..f3bfba7c 100644 --- a/gatchat/ppp.c +++ b/gatchat/ppp.c @@ -328,10 +328,8 @@ gboolean ppp_cb(GIOChannel *channel, GIOCondition cond, gpointer data) gsize bytes_read; GError *error = NULL; - if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) { - g_print("G_IO_NVAL | G_IO_ERR"); + if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) return FALSE; - } if (cond & G_IO_IN) { status = g_io_channel_read_chars(channel, buf, 256, |