From: Laurent Aimar Date: Sat, 2 Feb 2008 19:17:41 +0000 (+0000) Subject: Cosmetic (corrected a comment) X-Git-Tag: 0.9.0-test0~2994 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=e751a0a7f13d74a2385c1597f3a1a3df0d295a8a;p=vlc Cosmetic (corrected a comment) --- diff --git a/modules/access/file.c b/modules/access/file.c index 3991fb062e..5f36ff8798 100644 --- a/modules/access/file.c +++ b/modules/access/file.c @@ -450,8 +450,7 @@ static int Seek (access_t *p_access, int64_t i_pos) /* FIXME: i_size should really be unsigned */ if ((uint64_t)i_pos > (uint64_t)p_access->info.i_size) { - /* This should only happen with corrupted files. - * But it also seems to happen with buggy demuxes (ASF) */ + /* This should only happen with corrupted/truncated files. */ msg_Err (p_access, "seeking too far (0x"I64Fx" / 0x"I64Fx")", i_pos, p_access->info.i_size); i_pos = p_access->info.i_size;