Module: wine Branch: master Commit: 5d64f825b6cb5643ed7462866fa0642feaf5543f URL: http://source.winehq.org/git/wine.git/?a=commit;h=5d64f825b6cb5643ed7462866f...
Author: Huw Davies huw@codeweavers.com Date: Thu Jan 29 11:33:04 2009 +0000
oleaut32: Print an LCID in hexadecimal.
---
dlls/oleaut32/hash.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/hash.c b/dlls/oleaut32/hash.c index 12c9389..6f6eebb 100644 --- a/dlls/oleaut32/hash.c +++ b/dlls/oleaut32/hash.c @@ -510,7 +510,7 @@ ULONG WINAPI LHashValOfNameSysA( SYSKIND skind, LCID lcid, LPCSTR lpStr) ULONG nHiWord, nLoWord = 0x0deadbee; const unsigned char *str = (const unsigned char *)lpStr, *pnLookup = NULL;
- TRACE("(%d, %d, %s) %s\n", skind, lcid, debugstr_a(lpStr), + TRACE("(%d, 0x%x, %s) %s\n", skind, lcid, debugstr_a(lpStr), (skind == SYS_WIN16) ? "SYS_WIN16" : (skind == SYS_WIN32) ? "SYS_WIN32" : "");
if (!str)