From 24fdd29e94f37e7d58d892c9f98df3558dadc61a Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Fri, 18 Jun 2004 16:44:59 +0000 Subject: [PATCH] eliminate GCC warning svn path=/trunk/; revision=9707 --- reactos/subsys/system/explorer/utility/shellclasses.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/system/explorer/utility/shellclasses.h b/reactos/subsys/system/explorer/utility/shellclasses.h index cc57e388390..39a9058067f 100644 --- a/reactos/subsys/system/explorer/utility/shellclasses.h +++ b/reactos/subsys/system/explorer/utility/shellclasses.h @@ -78,7 +78,7 @@ struct COMExceptionBase LocalFree(pBuf); } else { TCHAR buffer[128]; - _stprintf(buffer, TEXT("unknown Exception: 0x%08X"), _hr); + _stprintf(buffer, TEXT("unknown Exception: 0x%08lX"), _hr); _msg = buffer; } }