summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-11-13 21:25:38 +0000
committerDavid Schleef <ds@schleef.org>2003-11-13 21:25:38 +0000
commit76c8b7153fcfe8cfada07af08352080a4eaae352 (patch)
tree7187213f296a0f43ce12f6e75f5e6c9203d4ab37
parent14081d99c795e10591abd5dd774670ac16c493bd (diff)
downloadgstreamer-plugins-bad-76c8b7153fcfe8cfada07af08352080a4eaae352.tar.gz
er, no, signal should be VOID__POINTER. :)
Original commit message from CVS: er, no, signal should be VOID__POINTER. :)
-rw-r--r--gst-libs/gst/propertyprobe/propertyprobe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/propertyprobe/propertyprobe.c b/gst-libs/gst/propertyprobe/propertyprobe.c
index c99eb313c..a8de4a9ab 100644
--- a/gst-libs/gst/propertyprobe/propertyprobe.c
+++ b/gst-libs/gst/propertyprobe/propertyprobe.c
@@ -72,8 +72,8 @@ gst_property_probe_iface_init (GstPropertyProbeInterface *iface)
gst_property_probe_signals[SIGNAL_PROBE_NEEDED] =
g_signal_new ("probe_needed", G_TYPE_FROM_CLASS (iface), G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GstPropertyProbeInterface, probe_needed),
- NULL, NULL, g_cclosure_marshal_VOID__VOID,
- G_TYPE_NONE, 0);
+ NULL, NULL, g_cclosure_marshal_VOID__POINTER,
+ G_TYPE_NONE, 1, G_TYPE_POINTER);
initialized = TRUE;
}