GNOME Bugzilla – Bug 623883
[winks] gstksvideosrc.c error on MSVC using gst_element_class_set_details()
Last modified: 2010-07-08 20:56:47 UTC
Created attachment 165517 [details] [review] Fixes MSVC warning/error. The following warning and error is emitted on gstksvideosrc.c using MSVC: sys\winks\gstksvideosrc.c(158) : warning C4133: 'function' : incompatible types - from 'char [11]' to 'const GstElementDetails *' sys\winks\gstksvideosrc.c(159) : error C4020: 'gst_element_class_set_details' : too many actual parameters Changing it to call gst_element_class_set_details_simple() instead resolves the issue.
Thanks, committed: commit e467a3e14b48bffc31b088dbfe011970d10b359e Author: David Hoyt <dhoyt@llnl.gov> Date: Thu Jul 8 21:53:35 2010 +0100 winks: fix compilation by using the right function Fixes #623883.