]> git.sesse.net Git - vlc/blobdiff - modules/access_filter/bandwidth.c
input: Expose input_ItemHasErrorWhenReading.
[vlc] / modules / access_filter / bandwidth.c
index ff00f9c709ee3b068bd66009e34cd61e4351c7e3..cb786772e3f68e02129904d26b5ccedf7f4b0ead 100644 (file)
@@ -144,7 +144,7 @@ retry:
 
     if (len > delta)
     {
-        msg_Dbg (access, "reading %u bytes instead of %u", (unsigned)delta,
+        msg_Dbg (access, "reading %"PRIu64" bytes instead of %zu", delta,
                  len);
         len = (int)delta;
     }
@@ -154,7 +154,7 @@ retry:
     len = src->pf_read (src, buffer, len);
     access->info = src->info;
 
-    msg_Dbg (access, "read %u bytes", len);
+    msg_Dbg (access, "read %zu bytes", len);
     return len;
 }