H. Verbeet : wordpad: Format warning fixes.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Oct 11 05:52:25 CDT 2006


Module: wine
Branch: master
Commit: 5aafea481a2398fe3462d994997b74fb15cca1a1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5aafea481a2398fe3462d994997b74fb15cca1a1

Author: H. Verbeet <hverbeet at gmail.com>
Date:   Tue Oct 10 23:01:16 2006 +0200

wordpad: Format warning fixes.

---

 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-cvs mailing list