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

ogg mux: fix format warning

parent 6e271d8b
......@@ -795,7 +795,8 @@ static block_t *OggCreateHeader( sout_mux_t *p_mux )
flac_streaminfo[3] = 34; /* block size */
op.packet = flac_streaminfo;
} else {
msg_Err(p_mux, "Invalid FLAC streaminfo (%d bytes)", op.bytes);
msg_Err(p_mux, "Invalid FLAC streaminfo (%ld bytes)",
op.bytes);
}
}
op.b_o_s = 0;
......
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