[MPlayer-cvslog] r31901 - trunk/loader/win32.c

reimar subversion at mplayerhq.hu
Mon Aug 2 19:27:21 CEST 2010


Author: reimar
Date: Mon Aug  2 19:27:20 2010
New Revision: 31901

Log:
Fix type in conditional.

Modified:
   trunk/loader/win32.c

Modified: trunk/loader/win32.c
==============================================================================
--- trunk/loader/win32.c	Mon Aug  2 19:26:28 2010	(r31900)
+++ trunk/loader/win32.c	Mon Aug  2 19:27:20 2010	(r31901)
@@ -3895,7 +3895,7 @@ static WIN_BOOL WINAPI expWriteFile(HAND
 static DWORD  WINAPI expSetFilePointer(HANDLE h, LONG val, LPLONG ext, DWORD whence)
 {
     int wh;
-    dbgprintf("SetFilePointer(%d, 0x%x, 0x%x = %d, %d)\n", h, val, ext, ext ? *ext : NULL, whence);
+    dbgprintf("SetFilePointer(%d, 0x%x, 0x%x = %d, %d)\n", h, val, ext, ext ? *ext : 0, whence);
     //why would DLL want temporary file with >2Gb size?
     switch(whence)
     {


More information about the MPlayer-cvslog mailing list