mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
rndbuffersize: printf format fix for long -> int change
This commit is contained in:
parent
b9676944bb
commit
17b422137a
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,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=%ld, min=%ld", self->min, self->max));
|
("buffer sizes: max=%d, min=%d", self->min, self->max));
|
||||||
goto pause_task;
|
goto pause_task;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue