diff options
author | Olivier Blin <olivier.blin@softathome.com> | 2012-10-12 17:41:58 +0200 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-06-08 20:41:22 -0300 |
commit | 7539b3c15ece007f0d1894f2e0cbb4d32898f4cf (patch) | |
tree | d379ec763683ab7b621f358d4a670a73edcf3de8 /libsoup/soup-client-input-stream.c | |
parent | 961dc48ae20f970026f87d0e74f31cc7094ea654 (diff) | |
download | libsoup-7539b3c15ece007f0d1894f2e0cbb4d32898f4cf.tar.gz |
use libfffi-based generic marshaller instead of glib-genmarshal
g_cclosure_marshal_generic() is the default signal handler starting
from glib 2.29.12. libsoup already requires glib 2.33.1.
https://bugzilla.gnome.org/show_bug.cgi?id=686042
Diffstat (limited to 'libsoup/soup-client-input-stream.c')
-rw-r--r-- | libsoup/soup-client-input-stream.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libsoup/soup-client-input-stream.c b/libsoup/soup-client-input-stream.c index 78bc15f1..3e533ca8 100644 --- a/libsoup/soup-client-input-stream.c +++ b/libsoup/soup-client-input-stream.c @@ -11,7 +11,6 @@ #include "soup-client-input-stream.h" #include "soup.h" -#include "soup-marshal.h" #include "soup-message-private.h" struct _SoupClientInputStreamPrivate { @@ -226,7 +225,7 @@ soup_client_input_stream_class_init (SoupClientInputStreamClass *stream_class) G_SIGNAL_RUN_LAST, 0, NULL, NULL, - _soup_marshal_NONE__NONE, + NULL, G_TYPE_NONE, 0); g_object_class_install_property ( |