Commit cc0dc931 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

https: fix format string

parent 4fb4df7b
...@@ -412,11 +412,11 @@ void (vlc_h2_frame_dump)(vlc_object_t *obj, const struct vlc_h2_frame *f, ...@@ -412,11 +412,11 @@ void (vlc_h2_frame_dump)(vlc_object_t *obj, const struct vlc_h2_frame *f,
uint_fast32_t sid = vlc_h2_frame_id(f); uint_fast32_t sid = vlc_h2_frame_id(f);
if (sid != 0) if (sid != 0)
msg_Dbg(obj, "%s %s (0x%02"PRIxFAST8") frame of %"PRIuFAST32" bytes, " msg_Dbg(obj, "%s %s (0x%02"PRIxFAST8") frame of %zu bytes, "
"flags 0x%02"PRIxFAST8", stream %"PRIuFAST32, msg, "flags 0x%02"PRIxFAST8", stream %"PRIuFAST32, msg,
vlc_h2_type_name(type), type, len, flags, sid); vlc_h2_type_name(type), type, len, flags, sid);
else else
msg_Dbg(obj, "%s %s (0x%02"PRIxFAST8") frame of %"PRIuFAST32" bytes, " msg_Dbg(obj, "%s %s (0x%02"PRIxFAST8") frame of %zu bytes, "
"flags 0x%02"PRIxFAST8", global", msg, "flags 0x%02"PRIxFAST8", global", msg,
vlc_h2_type_name(type), type, len, flags); vlc_h2_type_name(type), type, len, flags);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment