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 596981 - [audioresample] Compilation failure due to warning about use of %lu for guint64 variable
[audioresample] Compilation failure due to warning about use of %lu for guint...
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
git master
Other Mac OS
: Normal normal
: 0.10.26
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-10-01 12:42 UTC by Robert Swain
Modified: 2009-10-06 21:35 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Change printf variable type from %lu to %" G_GUINT64_FORMAT " as it should be for guint64 (1.12 KB, patch)
2009-10-01 12:42 UTC, Robert Swain
none Details | Review

Description Robert Swain 2009-10-01 12:42:19 UTC
Created attachment 144493 [details] [review]
Change printf variable type from %lu to %" G_GUINT64_FORMAT " as it should be for guint64

Compilation fails due to an incorrect parameter type being specified in the
printf() string in gstaudioresample.c. G_GUINT64_FORMAT should be used for
guint64 variables and not %lu.

See attached.
Comment 1 Robert Swain 2009-10-01 12:47:33 UTC
Add [audioresample] prefix to summary. Sorry about that. :)
Comment 2 Wim Taymans 2009-10-06 17:00:54 UTC
Will push after freeze
Comment 3 Wim Taymans 2009-10-06 20:39:22 UTC
commit fc56adc2e36cd9b41ab05982973916379e733bb1
Author: Robert Swain <robert swain gmail com>
Date:   Thu Oct 1 14:19:41 2009 +0200

    audioresample: fix printf variable type
    
    Change printf variable type from %lu to %" G_GUINT64_FORMAT " as it
    should be for guint64.
    
    Fixes #596981