diff options
author | Raimo Järvi <raimo.jarvi@gmail.com> | 2011-08-27 20:58:48 +0300 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-02-14 00:09:53 +0000 |
commit | ac681a6efd8ee4f4046fb93764a351a87566cde2 (patch) | |
tree | df772a74c1b9fba82d6040d89970955b5ece4282 /sys/directdraw | |
parent | debf4984dfe17799d9da6d520e4f4fd304727084 (diff) | |
download | gstreamer-plugins-bad-ac681a6efd8ee4f4046fb93764a351a87566cde2.tar.gz |
directdrawsink: Fix warnings on 64 bit mingw-w64
gstdirectdrawsink.c:1561:24: error: assignment from incompatible pointer type
gstdirectdrawsink.c:2028:3: error: format '%d' expects type 'int', but argument 8 has type 'size_t'
https://bugzilla.gnome.org/show_bug.cgi?id=657522
Diffstat (limited to 'sys/directdraw')
-rw-r--r-- | sys/directdraw/gstdirectdrawsink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/directdraw/gstdirectdrawsink.c b/sys/directdraw/gstdirectdrawsink.c index bd9b79ca1..518ca7cf6 100644 --- a/sys/directdraw/gstdirectdrawsink.c +++ b/sys/directdraw/gstdirectdrawsink.c @@ -1416,7 +1416,7 @@ gst_directdraw_sink_setup_ddraw (GstDirectDrawSink * ddrawsink) return bRet; } -static long FAR PASCAL +static LRESULT FAR PASCAL WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { @@ -2026,7 +2026,7 @@ surface_pitch_bad: GST_BUFFER_SIZE (surface) = size; surface->surface = NULL; GST_CAT_INFO_OBJECT (directdrawsink_debug, ddrawsink, - "allocating a system memory buffer of %d bytes", size); + "allocating a system memory buffer of %" G_GSIZE_FORMAT " bytes", size); #endif |