Michael Stefaniuc : user32: Don' t bother using the register storage class specifier.
Module: wine Branch: master Commit: 20595d2988869875d1d7cebd2d37bdf24da871cc URL: http://source.winehq.org/git/wine.git/?a=commit;h=20595d2988869875d1d7cebd2d... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Fri Sep 14 12:16:44 2012 +0200 user32: Don't bother using the register storage class specifier. --- dlls/user32/menu.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/user32/menu.c b/dlls/user32/menu.c index b325372..b587e63 100644 --- a/dlls/user32/menu.c +++ b/dlls/user32/menu.c @@ -1662,7 +1662,7 @@ static void MENU_DrawMenuItem( HWND hwnd, HMENU hmenu, HWND hwndOwner, HDC hdc, /* process text if present */ if (lpitem->text) { - register int i; + int i; HFONT hfontOld = 0; UINT uFormat = (menuBar) ?
participants (1)
-
Alexandre Julliard