From: Keith Marshall Date: Fri, 3 May 2019 14:32:30 +0000 (+0100) Subject: Correct a typographic error; fix MinGW-Bug #39193 X-Git-Tag: wsl-5.2.2-release~4 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c146597e10fc3b2d2551153b3fc5800d0206960e;p=mingw%2Fmingw-org-wsl.git Correct a typographic error; fix MinGW-Bug #39193 --- diff --git a/w32api/ChangeLog b/w32api/ChangeLog index 43a6af2..0a5c44e 100644 --- a/w32api/ChangeLog +++ b/w32api/ChangeLog @@ -1,6 +1,13 @@ +2019-05-03 Keith Marshall + + Correct a typographic error; fix MinGW-Bug #39193 + + * include/commctrl.h (ListView_SubItemHitTest): Balance parentheses; + add a missing closing parenthesis. + 2019-04-08 Keith Marshall - Correct typographic error; fix bug #39117 + Correct a typographic error; fix MinGW-Bug #39117 * include/commctrl.h (STATUSCUASSNAME): Correct misspelling... (STATUSCLASSNAME): ...to this. diff --git a/w32api/include/commctrl.h b/w32api/include/commctrl.h index 3925132..1e5afa0 100644 --- a/w32api/include/commctrl.h +++ b/w32api/include/commctrl.h @@ -4737,7 +4737,7 @@ WINAPI BOOL _TrackMouseEvent (LPTRACKMOUSEEVENT); #define ListView_SubItemHitTest( w, p ) \ (INT)(SNDMSG ((w), LVM_SUBITEMHITTEST, 0, \ - (LPARAM)((LPLVHITTESTINFO)(p)) \ + (LPARAM)((LPLVHITTESTINFO)(p))) \ ) #define ListView_SetItemCountEx( w, i, f ) \ (void)(SNDMSG ((w), LVM_SETITEMCOUNT, (WPARAM)(i), (LPARAM)(f)))