After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 416727 - [v4l2src] typo in printf format string
[v4l2src] typo in printf format string
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other All
: Normal minor
: 0.10.6
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2007-03-10 09:41 UTC by Alexander Shopov
Modified: 2007-03-10 12:35 UTC
See Also:
GNOME target: ---
GNOME version: 2.15/2.16



Description Alexander Shopov 2007-03-10 09:41:22 UTC
Take a look at the file sys/v4l2/v4l2_calls.c around line 126:

        GST_ELEMENT_ERROR (v4l2object->element, RESOURCE, SETTINGS,
            (_("Failed to get setting of tuner &d on device '%s'."),
                input.tuner, v4l2object->videodev), GST_ERROR_SYSTEM);


I think that &d should be %d in the line 
(_("Failed to get setting of tuner &d on device '%s'."),
Comment 1 Tim-Philipp Müller 2007-03-10 12:35:56 UTC
Thanks, should be fixed in CVS now:

 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>

        * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
        (gst_avi_demux_parse_index):
        * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
        * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
          Printf format fixes; also add some missing quotes in translated
          strings. Fixes #416728 and #416727.