mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
dvdreadsrc: Use variable type with correct signedness
This commit is contained in:
parent
4a4d652dd4
commit
6e9a534223
1 changed files with 2 additions and 2 deletions
|
@ -1073,7 +1073,7 @@ gst_dvd_read_src_get_size (GstDvdReadSrc * src, gint64 * size)
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
|
|
||||||
if (src->dvd_title) {
|
if (src->dvd_title) {
|
||||||
gsize blocks;
|
gssize blocks;
|
||||||
|
|
||||||
blocks = DVDFileSize (src->dvd_title);
|
blocks = DVDFileSize (src->dvd_title);
|
||||||
if (blocks >= 0) {
|
if (blocks >= 0) {
|
||||||
|
|
Loading…
Reference in a new issue