Commit 4bf5e48c authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

wined3d: Enable long types in utils.c.

parent a01f00be
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment