diff libmpcodecs/ve_vfw.c @ 34144:beafae9de2be

Employ correct off_t printf conversion specifiers; this time without typos. This fixes a handful of warnings like libmpcodecs/ve_vfw.c:150:7: warning: format '%d' expects type 'int', but argument 4 has type '__off64_t'
author diego
date Fri, 21 Oct 2011 15:44:58 +0000
parents cc8dfde2b6c5
children
line wrap: on
line diff
--- a/libmpcodecs/ve_vfw.c	Fri Oct 21 15:44:56 2011 +0000
+++ b/libmpcodecs/ve_vfw.c	Fri Oct 21 15:44:58 2011 +0000
@@ -147,7 +147,7 @@
         return NULL;
       }
       fclose(fd);
-      mp_msg(MSGT_WIN32,MSGL_ERR,"Compressor data %"PRIu64"d bytes\n", st.st_size);
+      mp_msg(MSGT_WIN32,MSGL_ERR,"Compressor data %"PRIu64" bytes\n", st.st_size);
       if (!(temp_len = (unsigned int) ICSendMessage(encoder_hic, ICM_SETSTATE, (LPARAM) drvdata, (int) st.st_size))){
         mp_msg(MSGT_WIN32,MSGL_ERR,"ICSetState failed!\n");
         free(drvdata);