This patch removes following warning message when gatttool exits
interactive mode.
(gatttool:457): GLib-WARNING **: Invalid file descriptor.
Since g_attrib_unref closes GIOChannel's fd g_io_channel_shutdown should
not be called here. This is because GAttrib is always created with "close on
unref" flag.
Signed-off-by: SeulKi Shin <redacted>
---
attrib/interactive.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/attrib/interactive.c b/attrib/interactive.c
index 7d4786a..4c48ca9 100644
--- a/attrib/interactive.c
+++ b/attrib/interactive.c
@@ -192,7 +192,6 @@ static void disconnect_io()
attrib = NULL;
opt_mtu = 0;
- g_io_channel_shutdown(iochannel, FALSE, NULL);
g_io_channel_unref(iochannel);
iochannel = NULL;
--
2.9.2.windows.1