From ab77906a37e3442937d6870398a6de65c33db2b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 3 Jul 2015 14:29:16 +0200 Subject: [PATCH] rtph261pay: Fix compiler warning gstrtph261pay.c: In function 'gst_rtp_h261_pay_class_init': gstrtph261pay.c:1003:17: error: variable 'gobject_class' set but not used [-Werror=unused-but-set-variable] GObjectClass *gobject_class; --- gst/rtp/gstrtph261pay.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst/rtp/gstrtph261pay.c b/gst/rtp/gstrtph261pay.c index 34861a1a0e..a1c3841781 100644 --- a/gst/rtp/gstrtph261pay.c +++ b/gst/rtp/gstrtph261pay.c @@ -1000,11 +1000,9 @@ gst_rtp_h261_pay_init (GstRtpH261Pay * pay) static void gst_rtp_h261_pay_class_init (GstRtpH261PayClass * klass) { - GObjectClass *gobject_class; GstElementClass *element_class; GstRTPBasePayloadClass *gstrtpbasepayload_class; - gobject_class = G_OBJECT_CLASS (klass); element_class = GST_ELEMENT_CLASS (klass); gstrtpbasepayload_class = GST_RTP_BASE_PAYLOAD_CLASS (klass);