Commit b33995ed authored by Alexandre Julliard's avatar Alexandre Julliard

version: Avoid pointer casts in a trace.

parent 0128b10a
...@@ -401,9 +401,8 @@ DWORD WINAPI GetFileResourceSize16( LPCSTR lpszFileName, LPCSTR lpszResType, ...@@ -401,9 +401,8 @@ DWORD WINAPI GetFileResourceSize16( LPCSTR lpszFileName, LPCSTR lpszResType,
OFSTRUCT ofs; OFSTRUCT ofs;
DWORD reslen; DWORD reslen;
TRACE("(%s,type=0x%x,id=0x%x,off=%p)\n", TRACE("(%s,type=%p,id=%p,off=%p)\n",
debugstr_a(lpszFileName), (LONG)lpszResType, (LONG)lpszResId, debugstr_a(lpszFileName), lpszResType, lpszResId, lpszResId );
lpszResId );
lzfd = LZOpenFileA( (LPSTR)lpszFileName, &ofs, OF_READ ); lzfd = LZOpenFileA( (LPSTR)lpszFileName, &ofs, OF_READ );
if ( lzfd < 0 ) return 0; if ( lzfd < 0 ) return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment