OSDN Git Service

Correct a typographic error; fix MinGW-Bug #39193
authorKeith Marshall <keith@users.osdn.me>
Fri, 3 May 2019 14:32:30 +0000 (15:32 +0100)
committerKeith Marshall <keith@users.osdn.me>
Fri, 3 May 2019 14:32:30 +0000 (15:32 +0100)
w32api/ChangeLog
w32api/include/commctrl.h

index 43a6af2..0a5c44e 100644 (file)
@@ -1,6 +1,13 @@
+2019-05-03  Keith Marshall  <keith@users.osdn.me>
+
+       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  <keith@users.osdn.me>
 
-       Correct typographic error; fix bug #39117
+       Correct a typographic error; fix MinGW-Bug #39117
 
        * include/commctrl.h (STATUSCUASSNAME): Correct misspelling...
        (STATUSCLASSNAME): ...to this.
index 3925132..1e5afa0 100644 (file)
@@ -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)))