Fix assumption that size_t is int
authorDavid Schleef <ds@schleef.org>
Wed, 24 Sep 2003 19:27:02 +0000 (19:27 +0000)
committerDavid Schleef <ds@schleef.org>
Wed, 24 Sep 2003 19:27:02 +0000 (19:27 +0000)
Original commit message from CVS:
Fix assumption that size_t is int

gst/elements/gstfilesrc.c
plugins/elements/gstfilesrc.c

index 066da9e9c04595a57b7d7a00c18735cb26866834..8ceba5883fa78d2e1966b729487c8c6a5da7ff93 100644 (file)
@@ -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", 
index 066da9e9c04595a57b7d7a00c18735cb26866834..8ceba5883fa78d2e1966b729487c8c6a5da7ff93 100644 (file)
@@ -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",