mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-25 21:24:16 +08:00
Remove non-critical error print
This commit is contained in:
parent
ac9481b7ad
commit
45164afdd7
@ -208,10 +208,8 @@ 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) {
|
||||
error("Ignoring error %d", err);
|
||||
if (err != G_IO_ERROR_NONE)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
free_space = sizeof(hs->buf) - hs->data_start - hs->data_length - 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user