diff options
author | Clément Bœsch | 2011-10-05 21:06:11 +0200 |
---|---|---|
committer | Clément Bœsch | 2011-10-05 21:25:02 +0200 |
commit | 54208857378cc772b1a2a99dec9116d7254d7bae (patch) | |
tree | 325e23550d0acbd9655ffbdcf8b62b1569b7f198 /libavformat | |
parent | f9bd9794763004852e4410f23d3f155a478357f1 (diff) |
libmodplug: consistent use of sizeof.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/libmodplug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/libmodplug.c b/libavformat/libmodplug.c index c10c5002d1..212e225b00 100644 --- a/libavformat/libmodplug.c +++ b/libavformat/libmodplug.c @@ -38,7 +38,7 @@ static int modplug_read_header(AVFormatContext *s, AVFormatParameters *ap) ModPlug_Settings settings; ModPlugContext *modplug = s->priv_data; - int sz = avio_read(pb, modplug->buf, sizeof modplug->buf); + int sz = avio_read(pb, modplug->buf, sizeof(modplug->buf)); ModPlug_GetSettings(&settings); settings.mChannels = 2; @@ -70,7 +70,7 @@ static int modplug_read_packet(AVFormatContext *s, AVPacket *pkt) ModPlugContext *modplug = s->priv_data; uint8_t buf[512]; - n = ModPlug_Read(modplug->f, buf, sizeof buf); + n = ModPlug_Read(modplug->f, buf, sizeof(buf)); if (n <= 0) return AVERROR(EIO); |