Browse Source

libmodplug: consistent use of sizeof.

tags/n0.9
Clément Bœsch 14 years ago
parent
commit
5420885737
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/libmodplug.c

+ 2
- 2
libavformat/libmodplug.c View File

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



Loading…
Cancel
Save