Fix a bad void return. #588901
authorDan Winship <danw@gnome.org>
Thu, 30 Jul 2009 15:18:35 +0000 (11:18 -0400)
committerDan Winship <danw@gnome.org>
Thu, 30 Jul 2009 15:18:35 +0000 (11:18 -0400)
gio/gtcpconnection.c

index de1aa14..59f9c1b 100644 (file)
@@ -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);
 }