From: Eric Pouech <eric.pouech(a)gmail.com> --- dlls/wined3d/sampler.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dlls/wined3d/sampler.c b/dlls/wined3d/sampler.c index bfd9f8ac987..ac2b2292503 100644 --- a/dlls/wined3d/sampler.c +++ b/dlls/wined3d/sampler.c @@ -1,4 +1,3 @@ -#define WINE_NO_LONG_TYPES /* temporary */ /* * Copyright 2012, 2015 Henri Verbeet for CodeWeavers * @@ -26,7 +25,7 @@ ULONG CDECL wined3d_sampler_incref(struct wined3d_sampler *sampler) { ULONG refcount = InterlockedIncrement(&sampler->refcount); - TRACE("%p increasing refcount to %u.\n", sampler, refcount); + TRACE("%p increasing refcount to %lu.\n", sampler, refcount); return refcount; } @@ -35,7 +34,7 @@ ULONG CDECL wined3d_sampler_decref(struct wined3d_sampler *sampler) { ULONG refcount = wined3d_atomic_decrement_mutex_lock(&sampler->refcount); - TRACE("%p decreasing refcount to %u.\n", sampler, refcount); + TRACE("%p decreasing refcount to %lu.\n", sampler, refcount); if (!refcount) { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1612