wordpad: Format warning fixes

H. Verbeet hverbeet at gmail.com
Tue Oct 10 16:01:16 CDT 2006


These actually cause warnings at the moment, but are masked when
-fno-builtin is used.
-------------- next part --------------
---

 programs/wordpad/wordpad.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/programs/wordpad/wordpad.c b/programs/wordpad/wordpad.c
index 7ca54e6..9afcc5d 100644
--- a/programs/wordpad/wordpad.c
+++ b/programs/wordpad/wordpad.c
@@ -137,7 +137,7 @@ static LRESULT OnCreate( HWND hWnd, WPAR
       0, 0, 1000, 100, hWnd, (HMENU)IDC_EDITOR, hInstance, NULL);
     if (!hEditorWnd)
     {
-        fprintf(stderr, "Error code %lu\n", GetLastError());
+        fprintf(stderr, "Error code %u\n", GetLastError());
         return -1;
     }
     assert(hEditorWnd);
@@ -189,7 +189,7 @@ static LRESULT OnNotify( HWND hWnd, WPAR
         SELCHANGE *pSC = (SELCHANGE *)lParam;
         char buf[128];
 
-        sprintf( buf,"selection = %ld..%ld, line count=%ld\n",
+        sprintf( buf,"selection = %d..%d, line count=%ld\n",
                  pSC->chrg.cpMin, pSC->chrg.cpMax,
         SendMessage(hwndEditor, EM_GETLINECOUNT, 0, 0));
         SetWindowText(GetDlgItem(hWnd, IDC_STATUSBAR), buf);
@@ -312,7 +312,7 @@ static LRESULT OnCommand( HWND hWnd, WPA
         SendMessage(hwndEditor, EM_EXGETSEL, 0, (LPARAM)&range);
         data = HeapAlloc(GetProcessHeap(), 0, sizeof(*data) * (range.cpMax-range.cpMin+1));
         SendMessage(hwndEditor, EM_GETSELTEXT, 0, (LPARAM)data);
-        sprintf(buf, "Start = %ld, End = %ld", range.cpMin, range.cpMax);
+        sprintf(buf, "Start = %d, End = %d", range.cpMin, range.cpMax);
         MessageBoxA(hWnd, buf, "Editor", MB_OK);
         MessageBoxW(hWnd, data, xszAppTitle, MB_OK);
         HeapFree( GetProcessHeap(), 0, data);


More information about the wine-patches mailing list