shithub: libvpx

Download patch

ref: c259af4f734681e857847129f1eef56bd7c39b2a
parent: 4f4713b4170b61fcbef2be3f097c30c806a9a0f2
author: Frank Galligan <fgalligan@google.com>
date: Thu Jun 20 10:05:17 EDT 2013

Fix win64 warning.

- size_t vs int.

Change-Id: Ib47ebd932a4b69db9f52a43000bb69d0a96b9134

--- a/vp9/common/vp9_debugmodes.c
+++ b/vp9/common/vp9_debugmodes.c
@@ -23,7 +23,7 @@
  * 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;