mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
gst/debug/rndbuffersize.c: Fix printf format to pacify Mac OSX's gcc.
Original commit message from CVS: 2008-04-28 Julien Moutte <julien@fluendo.com> * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf format to pacify Mac OSX's gcc.
This commit is contained in:
parent
a66d502e0a
commit
deca08cdc4
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-04-28 Julien Moutte <julien@fluendo.com>
|
||||||
|
|
||||||
|
* gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf
|
||||||
|
format to pacify Mac OSX's gcc.
|
||||||
|
|
||||||
2008-04-25 Tim-Philipp Müller <tim at centricular dot net>
|
2008-04-25 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
|
* gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
|
||||||
|
|
|
@ -320,7 +320,7 @@ bogus_minmax:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (self, LIBRARY, SETTINGS,
|
GST_ELEMENT_ERROR (self, LIBRARY, SETTINGS,
|
||||||
("The minimum buffer size is smaller than the maximum buffer size."),
|
("The minimum buffer size is smaller than the maximum buffer size."),
|
||||||
("buffer sizes: max=%d, min=%d", self->min, self->max));
|
("buffer sizes: max=%ld, min=%ld", self->min, self->max));
|
||||||
goto pause_task;
|
goto pause_task;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue