1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-05-04 04:56:52 +02:00

Don't return something from a void function ()

This commit is contained in:
Alexander Larsson 2009-05-25 12:46:03 +02:00
parent ce171195d9
commit c93c98732a

@ -137,7 +137,7 @@ g_socket_control_message_serialize (GSocketControlMessage *message,
{
g_return_if_fail (G_IS_SOCKET_CONTROL_MESSAGE (message));
return G_SOCKET_CONTROL_MESSAGE_GET_CLASS (message)->serialize (message, data);
G_SOCKET_CONTROL_MESSAGE_GET_CLASS (message)->serialize (message, data);
}