Fix the fix of revision 63943. Noticed by Thomas Faber.
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 24 Aug 2014 19:32:54 +0000 (19:32 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 24 Aug 2014 19:32:54 +0000 (19:32 +0000)
CORE-8150 #comment Indeed, do not confuse 'l' (lowercase L) with 'I' (uppercase i)!

svn path=/trunk/; revision=63944

reactos/dll/cpl/desk/screensaver.c

index ee073c0..3fd562e 100644 (file)
@@ -123,7 +123,7 @@ SetScreenSaverPreviewBox(HWND hwndDlg, PDATA pData)
     if (pData->Selection > 0)
     {
         _stprintf(szCmdline,
-                  _T("%s /p %lu"),
+                  _T("%s /p %Iu"),
                   pData->ScreenSaverItems[pData->Selection].szFilename,
                   (ULONG_PTR)hPreview);
 
@@ -199,7 +199,7 @@ ScreensaverConfig(HWND hwndDlg, PDATA pData)
         return;
 
     _stprintf(szCmdline,
-              _T("%s /c:%lu"),
+              _T("%s /c:%Iu"),
               pData->ScreenSaverItems[pData->Selection].szFilename,
               (ULONG_PTR)hwndDlg);