]> git.sesse.net Git - vlc/commitdiff
Cosmetic (corrected a comment)
authorLaurent Aimar <fenrir@videolan.org>
Sat, 2 Feb 2008 19:17:41 +0000 (19:17 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sat, 2 Feb 2008 19:17:41 +0000 (19:17 +0000)
modules/access/file.c

index 3991fb062e697cbd1ae7155a0bb2b6db75efcaaf..5f36ff8798b1609952af49475f44c5f0e74dc7d1 100644 (file)
@@ -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;