GNOME Bugzilla – Bug 740013
rtspconnection: There is an warning by mismatch of parameter name in header and source files
Last modified: 2014-11-19 18:45:06 UTC
When generating GstRtsp-1.0.gir in gst-plugins-base/gst-libs/gst/rtsp/, there is an warning as below. Warning: GstRtsp: gst_rtsp_watch_set_flushing: unknown parameter 'flushing' in documentation comment, should be 'flush' This is because mismatch between declaration in header and source file. <gstrtspconnection.h> void gst_rtsp_watch_set_flushing (GstRTSPWatch * watch, gboolean flush); <gstrtspconnection.c> void gst_rtsp_watch_set_flushing (GstRTSPWatch * watch, gboolean flushing);
Created attachment 290517 [details] [review] rtspconnection: There is an warning by mismatch of parameter name
Comment on attachment 290517 [details] [review] rtspconnection: There is an warning by mismatch of parameter name Hi. Thanks for your patch. Please add bug # in commit message and resubmit.
Created attachment 290979 [details] [review] rtspconnection: There is an warning by mismatch of parameter name in header and source files
Comment on attachment 290979 [details] [review] rtspconnection: There is an warning by mismatch of parameter name in header and source files Patch looks OK. I'm pushing after fixing the commit message.
Hyunjun: Thanks for your patch. Had to fix the commit message before pushing though, please see bellow to get an idea of what is expected: commit cb15df15acd90a1c63f5a02f64acfff957c0bcd2 Author: Hyunjun Ko <zzoonis@gmail.com> Date: Wed Nov 19 21:18:04 2014 +0900 rtspconnection: fix warning on param name mismatch https://bugzilla.gnome.org/show_bug.cgi?id=740013