[Bug 665101] New: Wrong format string in gst_dvd_read_src_do_seek

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Mon Nov 28 20:45:09 PST 2011


https://bugzilla.gnome.org/show_bug.cgi?id=665101
  GStreamer | gst-plugins-ugly | git

           Summary: Wrong format string in gst_dvd_read_src_do_seek
    Classification: Platform
           Product: GStreamer
           Version: git
        OS/Version: Windows
            Status: UNCONFIRMED
          Severity: blocker
          Priority: Normal
         Component: gst-plugins-ugly
        AssignedTo: gstreamer-bugs at lists.freedesktop.org
        ReportedBy: lrn1986 at gmail.com
         QAContact: gstreamer-bugs at lists.freedesktop.org
     GNOME version: ---


GST_DEBUG_OBJECT (src, "Format is sector, seeking to %d", s->last_stop);
causes
dvdreadsrc.c:1216:7: error: format '%d' expects type 'int', but argument 8 has
type 'gint64'

I suggest changing it to:
      GST_DEBUG_OBJECT (src, "Format is sector, seeking to " G_GINT64_FORMAT,
s->last_stop);

-- 
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list