GNOME Bugzilla – Bug 596981
[audioresample] Compilation failure due to warning about use of %lu for guint64 variable
Last modified: 2009-10-06 21:35:58 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.
Add [audioresample] prefix to summary. Sorry about that. :)
Will push after freeze
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