projects
/
dana
/
cg-glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce17119
)
Don't return something from a void function (#583408)
author
Alexander Larsson
<alexl@redhat.com>
Mon, 25 May 2009 10:46:03 +0000
(12:46 +0200)
committer
Alexander Larsson
<alexl@redhat.com>
Mon, 25 May 2009 10:46:03 +0000
(12:46 +0200)
gio/gsocketcontrolmessage.c
patch
|
blob
|
history
diff --git
a/gio/gsocketcontrolmessage.c
b/gio/gsocketcontrolmessage.c
index 27420d74798a93c0a20592e0d51aaf33ef5a2add..7a519f9ee8afad560b6bfb9d9d5479616f56a94f 100644
(file)
--- a/
gio/gsocketcontrolmessage.c
+++ b/
gio/gsocketcontrolmessage.c
@@
-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);
}