Index: base/services/umpnpmgr/umpnpmgr.c =================================================================== --- base/services/umpnpmgr/umpnpmgr.c (revision 63081) +++ base/services/umpnpmgr/umpnpmgr.c (working copy) @@ -1620,7 +1620,7 @@ dwInstanceNumber = 0; do { - swprintf(szGeneratedInstance, L"Root\\%ls\\%04d", + swprintf(szGeneratedInstance, L"Root\\%ls\\%04lu", pszDeviceID, dwInstanceNumber); /* Try to create a device instance with this ID */ @@ -2115,7 +2115,7 @@ else { swprintf(szKeyName, - L"System\\CurrentControlSet\\HardwareProfiles\\%04u\\System\\CurrentControlSet\\Enum", + L"System\\CurrentControlSet\\HardwareProfiles\\%04lu\\System\\CurrentControlSet\\Enum", ulConfig); } Index: base/setup/usetup/mui.c =================================================================== --- base/setup/usetup/mui.c (revision 63081) +++ base/setup/usetup/mui.c (working copy) @@ -461,7 +461,7 @@ } else { - swprintf(szLangID, L"d%03u%s", uCount, MuiLayouts[uIndex].LangID); + swprintf(szLangID, L"d%03lu%s", uCount, MuiLayouts[uIndex].LangID); Status = NtSetValueKey(KeyHandle, &ValueName, 0, Index: base/shell/explorer/services/startup.c =================================================================== --- base/shell/explorer/services/startup.c (revision 63081) +++ base/shell/explorer/services/startup.c (working copy) @@ -93,7 +93,7 @@ } else { - printf("Couldn't open key, error %ld\n", res); + printf("Couldn't open key, error %lu\n", res); res=FALSE; } @@ -113,7 +113,7 @@ if (res!=ERROR_SUCCESS) { - printf("Couldn't query value's length (%ld)\n", res); + printf("Couldn't query value's length (%lu)\n", res); res=FALSE; goto end; } @@ -369,7 +369,7 @@ if ((res=RegEnumValueW(hkRun, i, szValue, &nValLength, 0, &type, (LPBYTE)szCmdLine, &nDataLength))!=ERROR_SUCCESS) { - printf("Couldn't read in value %ld - %ld\n", i, res); + printf("Couldn't read in value %lu - %ld\n", i, res); continue; } @@ -379,12 +379,12 @@ if (bDelete && (res=RegDeleteValueW(hkRun, szValue))!=ERROR_SUCCESS) { - printf("Couldn't delete value - %ld, %ld. Running command anyways.\n", i, res); + printf("Couldn't delete value - %lu, %ld. Running command anyways.\n", i, res); } if (type!=REG_SZ) { - printf("Incorrect type of value #%ld (%ld)\n", i, type); + printf("Incorrect type of value #%lu (%lu)\n", i, type); continue; } @@ -391,10 +391,10 @@ if ((res=runCmd(szCmdLine, NULL, bSynchronous, FALSE))==INVALID_RUNCMD_RETURN) { - printf("Error running cmd #%ld (%ld)\n", i, GetLastError()); + printf("Error running cmd #%lu (%ld)\n", i, GetLastError()); } - printf("Done processing cmd #%ld\n", i); + printf("Done processing cmd #%lu\n", i); } free(szValue); Index: base/system/msiexec/service.c =================================================================== --- base/system/msiexec/service.c (revision 63081) +++ base/system/msiexec/service.c (working copy) @@ -73,7 +73,7 @@ static void WINAPI ServiceCtrlHandler(DWORD code) { - WINE_TRACE("%d\n", code); + WINE_TRACE("%u\n", code); switch (code) { @@ -83,7 +83,7 @@ KillService(); return; default: - fprintf(stderr, "Unhandled service control code: %d\n", code); + fprintf(stderr, "Unhandled service control code: %u\n", code); break; } Index: base/system/services/database.c =================================================================== --- base/system/services/database.c (revision 63081) +++ base/system/services/database.c (working copy) @@ -99,7 +99,7 @@ } /* Create '\\.\pipe\net\NtControlPipeXXX' instance */ - swprintf(szControlPipeName, L"\\\\.\\pipe\\net\\NtControlPipe%u", ServiceCurrent); + swprintf(szControlPipeName, L"\\\\.\\pipe\\net\\NtControlPipe%lu", ServiceCurrent); DPRINT("PipeName: %S\n", szControlPipeName); Index: boot/armllb/os/loader.c =================================================================== --- boot/armllb/os/loader.c (revision 63081) +++ boot/armllb/os/loader.c (working copy) @@ -115,7 +115,7 @@ /* Set parameters for the OS loader */ snprintf(CommandLine, sizeof(CommandLine), - "rdbase=0x%x rdsize=0x%x rdoffset=%s", + "rdbase=0x%lx rdsize=0x%lx rdoffset=%s", RootFs, Size, Offset); LlbSetCommandLine(CommandLine); Index: win32ss/user/winsrv/consrv/settings.c =================================================================== --- win32ss/user/winsrv/consrv/settings.c (revision 63081) +++ win32ss/user/winsrv/consrv/settings.c (working copy) @@ -351,7 +351,7 @@ * or we are saving settings for a particular console, which differs * from the default ones. */ - swprintf(szValueName, L"ColorTable%02d", i); + swprintf(szValueName, L"ColorTable%02u", i); SetConsoleSetting(szValueName, REG_DWORD, sizeof(DWORD), &ConsoleInfo->Colors[i], s_Colors[i]); } Index: win32ss/user/winsrv/consrv_new/settings.c =================================================================== --- win32ss/user/winsrv/consrv_new/settings.c (revision 63081) +++ win32ss/user/winsrv/consrv_new/settings.c (working copy) @@ -355,7 +355,7 @@ * or we are saving settings for a particular console, which differs * from the default ones. */ - swprintf(szValueName, L"ColorTable%02d", i); + swprintf(szValueName, L"ColorTable%02u", i); SetConsoleSetting(szValueName, REG_DWORD, sizeof(DWORD), &ConsoleInfo->Colors[i], s_Colors[i]); }