Browse Source

ogg mux: fix format warning

pull/7/head
Rémi Denis-Courmont 13 years ago
parent
commit
3e454fd4c5
  1. 3
      modules/mux/ogg.c

3
modules/mux/ogg.c

@ -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;

Loading…
Cancel
Save