# HG changeset patch # User Bram Moolenaar # Date 1407412510 -7200 # Node ID f62b2e76dd809dc57cad9d0fd8f04a4f3a7193e9 # Parent 2a798dca16bffe3fd730a98d7e34e31e488b7761 updated for version 7.4.398 Problem: Gcc error for the argument of InterlockedIncrement() and InterlockedDecrement(). (Axel Bender) Solution: Remove "unsigned" from the cRefCount_ declaration. diff --git a/src/gui_dwrite.cpp b/src/gui_dwrite.cpp --- a/src/gui_dwrite.cpp +++ b/src/gui_dwrite.cpp @@ -377,7 +377,7 @@ public: } private: - unsigned long cRefCount_; + long cRefCount_; IDWriteBitmapRenderTarget* pRenderTarget_; IDWriteRenderingParams* pRenderingParams_; }; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 398, +/**/ 397, /**/ 396,