summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_debugmodes.c
diff options
context:
space:
mode:
authorFrank Galligan <fgalligan@google.com>2013-06-20 14:05:17 -0700
committerFrank Galligan <fgalligan@google.com>2013-06-20 14:07:11 -0700
commitc259af4f734681e857847129f1eef56bd7c39b2a (patch)
tree1f1652441a1f2727dad3489c2a8e3d69a0be3914 /vp9/common/vp9_debugmodes.c
parent4f4713b4170b61fcbef2be3f097c30c806a9a0f2 (diff)
downloadlibvpx-c259af4f734681e857847129f1eef56bd7c39b2a.tar
libvpx-c259af4f734681e857847129f1eef56bd7c39b2a.tar.gz
libvpx-c259af4f734681e857847129f1eef56bd7c39b2a.tar.bz2
libvpx-c259af4f734681e857847129f1eef56bd7c39b2a.zip
Fix win64 warning.
- size_t vs int. Change-Id: Ib47ebd932a4b69db9f52a43000bb69d0a96b9134
Diffstat (limited to 'vp9/common/vp9_debugmodes.c')
-rw-r--r--vp9/common/vp9_debugmodes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_debugmodes.c b/vp9/common/vp9_debugmodes.c
index f84343f32..370ebe8f8 100644
--- a/vp9/common/vp9_debugmodes.c
+++ b/vp9/common/vp9_debugmodes.c
@@ -23,7 +23,7 @@ static void log_frame_info(VP9_COMMON *cm, const char *str, FILE *f) {
* for each mbmi member value in the mi structure.
*/
static void print_mi_data(VP9_COMMON *common, FILE *file, char *descriptor,
- int member_offset) {
+ size_t member_offset) {
int mi_row;
int mi_col;
int mi_index = 0;