Eric Pouech : wined3d: Enable long integral types in stateblock.c.
Module: wine Branch: master Commit: 4d4841832a7d418872bfb7ba32b9d500234c1a8f URL: https://gitlab.winehq.org/wine/wine/-/commit/4d4841832a7d418872bfb7ba32b9d50... Author: Eric Pouech <eric.pouech(a)gmail.com> Date: Fri Dec 9 10:25:30 2022 +0100 wined3d: Enable long integral types in stateblock.c. --- dlls/wined3d/stateblock.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/wined3d/stateblock.c b/dlls/wined3d/stateblock.c index f3a4d728c7b..16f58b726d0 100644 --- a/dlls/wined3d/stateblock.c +++ b/dlls/wined3d/stateblock.c @@ -21,7 +21,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 "wined3d_private.h" @@ -2065,7 +2064,7 @@ HRESULT CDECL wined3d_stateblock_create(struct wined3d_device *device, const str hr = stateblock_init(object, device_state, device, type); if (FAILED(hr)) { - WARN("Failed to initialize stateblock, hr %#x.\n", hr); + WARN("Failed to initialize stateblock, hr %#lx.\n", hr); heap_free(object); return hr; }
participants (1)
-
Alexandre Julliard