Module: wine Branch: master Commit: 4bf5e48c13a91bdba6b0840c68a5be3f74e1e439 URL: https://gitlab.winehq.org/wine/wine/-/commit/4bf5e48c13a91bdba6b0840c68a5be3...
Author: Eric Pouech eric.pouech@gmail.com Date: Thu Dec 8 10:42:28 2022 +0100
wined3d: Enable long types in utils.c.
---
dlls/wined3d/utils.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dlls/wined3d/utils.c b/dlls/wined3d/utils.c index b93722296f2..fb350acf56f 100644 --- a/dlls/wined3d/utils.c +++ b/dlls/wined3d/utils.c @@ -23,7 +23,6 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#define WINE_NO_LONG_TYPES /* temporary */
#include <stdio.h>
@@ -7043,7 +7042,7 @@ void wined3d_release_dc(HWND window, HDC dc) if (WindowFromDC(dc) != window) WARN("DC %p does not belong to window %p.\n", dc, window); else if (!ReleaseDC(window, dc)) - ERR("Failed to release device context %p, last error %#x.\n", dc, GetLastError()); + ERR("Failed to release device context %p, last error %#lx.\n", dc, GetLastError()); }
BOOL wined3d_clip_blit(const RECT *clip_rect, RECT *clipped, RECT *other)