Mercurial > mplayer.hg
changeset 31822:b9aa9b0d8e4b
Fix type in conditional.
author | reimar |
---|---|
date | Mon, 02 Aug 2010 17:27:20 +0000 |
parents | 3f3381845ae9 |
children | 73c4715af8c0 |
files | loader/win32.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/win32.c Mon Aug 02 17:26:28 2010 +0000 +++ b/loader/win32.c Mon Aug 02 17:27:20 2010 +0000 @@ -3895,7 +3895,7 @@ 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) {