mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
Fix 0x%lu specifier in our skeleton service and its only user tcpsvcs.
svn path=/trunk/; revision=69437
This commit is contained in:
parent
1a33bc3cdf
commit
b86a4b8e83
2 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ UpdateStatus(PSERVICEINFO pServInfo,
|
|||
|
||||
_snwprintf(szSet,
|
||||
49,
|
||||
L"Service state 0x%lu, CheckPoint %lu",
|
||||
L"Service state 0x%lx, CheckPoint %lu",
|
||||
pServInfo->servStatus.dwCurrentState,
|
||||
pServInfo->servStatus.dwCheckPoint);
|
||||
LogEvent(szSet, 0, 0, LOG_FILE);
|
||||
|
|
|
@ -54,7 +54,7 @@ UpdateStatus(PSERVICEINFO pServInfo,
|
|||
|
||||
_sntprintf(szSet,
|
||||
49,
|
||||
_T("Service state 0x%lu, CheckPoint %lu"),
|
||||
_T("Service state 0x%lx, CheckPoint %lu"),
|
||||
pServInfo->servStatus.dwCurrentState,
|
||||
pServInfo->servStatus.dwCheckPoint);
|
||||
LogEvent(szSet, 0, 0, LOG_FILE);
|
||||
|
|
Loading…
Reference in a new issue