Changeset 900 for trunk/dll/inis.c


Ignore:
Timestamp:
Jan 4, 2008, 12:08:47 AM (18 years ago)
Author:
Steven Levine
Message:

Format unsigned numbers as unsigned numbers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/inis.c

    r871 r900  
    21192119                                      INI_APPLIST,
    21202120                                      LM_QUERYITEMCOUNT, MPVOID, MPVOID);
    2121       sprintf(s, "%d", num);
     2121      sprintf(s, "%u", num);
    21222122      WinSetDlgItemText(hwnd, INI_NUMAPPS, s);
    21232123      num = (SHORT) WinSendDlgItemMsg(hwnd,
    21242124                                      INI_KEYLIST,
    21252125                                      LM_QUERYITEMCOUNT, MPVOID, MPVOID);
    2126       sprintf(s, "%d", num);
     2126      sprintf(s, "%u", num);
    21272127      WinSetDlgItemText(hwnd, INI_NUMKEYS, s);
    21282128      WinSetDlgItemText(hwnd, INI_NUMDATA, "0");
Note: See TracChangeset for help on using the changeset viewer.