diff options
author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2007-07-10 13:34:57 +0000 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2007-07-10 13:34:57 +0000 |
commit | 66d48b0ac25c85de354f26782a377d0ad91bd322 (patch) | |
tree | 973a2c30fa6609a8fa10b7d99c150ef476f7b142 /audio/headset.c | |
parent | df235d1f395b10654024979180c778777bd50c71 (diff) |
Code cleanup.
Diffstat (limited to 'audio/headset.c')
-rw-r--r-- | audio/headset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/headset.c b/audio/headset.c index ca24e93b..edb323ee 100644 --- a/audio/headset.c +++ b/audio/headset.c @@ -206,7 +206,7 @@ static gboolean rfcomm_io_cb(GIOChannel *chan, GIOCondition cond, err = g_io_channel_read(chan, (gchar *) buf, sizeof(buf) - 1, &bytes_read); if (err != G_IO_ERROR_NONE) - goto failed; + error("Ignoring error %d", err); free_space = sizeof(hs->buf) - hs->data_start - hs->data_length - 1; |