diff matroska.c @ 1332:7474cc6383d4 libavformat

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 6a5e58d2114b
children 0899bfe4105c
line wrap: on
line diff
--- a/matroska.c	Wed Sep 27 19:39:41 2006 +0000
+++ b/matroska.c	Wed Sep 27 19:47:39 2006 +0000
@@ -1667,7 +1667,7 @@
                     switch (id) {
                         /* one single index entry ('point') */
                         case MATROSKA_ID_CUETIME: {
-                            int64_t time;
+                            uint64_t time;
                             if ((res = ebml_read_uint(matroska, &id,
                                                       &time)) < 0)
                                 break;