mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
Fix assumption that size_t is int
Original commit message from CVS: Fix assumption that size_t is int
This commit is contained in:
parent
5db318b09a
commit
b2334b319c
2 changed files with 6 additions and 6 deletions
|
@ -394,7 +394,7 @@ gst_filesrc_map_region (GstFileSrc *src, off_t offset, size_t size)
|
|||
|
||||
g_return_val_if_fail (offset >= 0, NULL);
|
||||
|
||||
fs_print ("mapping region %08llx+%08x from file into memory\n",offset,size);
|
||||
fs_print ("mapping region %08llx+%08lx from file into memory\n",offset,(unsigned long)size);
|
||||
mmapregion = mmap (NULL, size, PROT_READ, MAP_SHARED, src->fd, offset);
|
||||
|
||||
if (mmapregion == NULL) {
|
||||
|
@ -402,8 +402,8 @@ gst_filesrc_map_region (GstFileSrc *src, off_t offset, size_t size)
|
|||
return NULL;
|
||||
}
|
||||
else if (mmapregion == MAP_FAILED) {
|
||||
GST_DEBUG ("mmap (0x%x, %d, 0x%llx) : %s",
|
||||
size, src->fd, offset, strerror (errno));
|
||||
GST_DEBUG ("mmap (0x%08lx, %d, 0x%llx) : %s",
|
||||
(unsigned long)size, src->fd, offset, strerror (errno));
|
||||
return NULL;
|
||||
}
|
||||
GST_DEBUG ( "mapped region %08lx+%08lx from file into memory at %p",
|
||||
|
|
|
@ -394,7 +394,7 @@ gst_filesrc_map_region (GstFileSrc *src, off_t offset, size_t size)
|
|||
|
||||
g_return_val_if_fail (offset >= 0, NULL);
|
||||
|
||||
fs_print ("mapping region %08llx+%08x from file into memory\n",offset,size);
|
||||
fs_print ("mapping region %08llx+%08lx from file into memory\n",offset,(unsigned long)size);
|
||||
mmapregion = mmap (NULL, size, PROT_READ, MAP_SHARED, src->fd, offset);
|
||||
|
||||
if (mmapregion == NULL) {
|
||||
|
@ -402,8 +402,8 @@ gst_filesrc_map_region (GstFileSrc *src, off_t offset, size_t size)
|
|||
return NULL;
|
||||
}
|
||||
else if (mmapregion == MAP_FAILED) {
|
||||
GST_DEBUG ("mmap (0x%x, %d, 0x%llx) : %s",
|
||||
size, src->fd, offset, strerror (errno));
|
||||
GST_DEBUG ("mmap (0x%08lx, %d, 0x%llx) : %s",
|
||||
(unsigned long)size, src->fd, offset, strerror (errno));
|
||||
return NULL;
|
||||
}
|
||||
GST_DEBUG ( "mapped region %08lx+%08lx from file into memory at %p",
|
||||
|
|
Loading…
Reference in a new issue