projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f34b1f0
)
Fix a bad void return. #588901
author
Dan Winship
<danw@gnome.org>
Thu, 30 Jul 2009 15:18:35 +0000
(11:18 -0400)
committer
Dan Winship
<danw@gnome.org>
Thu, 30 Jul 2009 15:18:35 +0000
(11:18 -0400)
gio/gtcpconnection.c
patch
|
blob
|
history
diff --git
a/gio/gtcpconnection.c
b/gio/gtcpconnection.c
index
de1aa14
..
59f9c1b
100644
(file)
--- a/
gio/gtcpconnection.c
+++ b/
gio/gtcpconnection.c
@@
-327,7
+327,7
@@
g_tcp_connection_close_async (GIOStream *stream,
return;
}
-
return
G_IO_STREAM_CLASS (g_tcp_connection_parent_class)
+ G_IO_STREAM_CLASS (g_tcp_connection_parent_class)
->close_async (stream, io_priority, cancellable, callback, user_data);
}