From: Wade Berrier Date: Thu, 29 Mar 2007 00:11:34 +0000 (-0000) Subject: * supportw.c (SendMessageA/GetWindowLongA): Return values to fix some X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=c9756a7bdfbb53efb986485a74b8ec8f0961c417;p=mono.git * supportw.c (SendMessageA/GetWindowLongA): Return values to fix some warnings, even though these aren't called (Patch from suse rpms) svn path=/trunk/mono/; revision=75119 --- diff --git a/support/ChangeLog b/support/ChangeLog index c2591852c3c..4040417c142 100644 --- a/support/ChangeLog +++ b/support/ChangeLog @@ -1,3 +1,8 @@ +2007-03-28 Wade Berrier + + * supportw.c (SendMessageA/GetWindowLongA): Return values to fix some + warnings, even though these aren't called (Patch from suse rpms) + 2007-01-23 Miguel de Icaza * serial.c (poll_serial): Fix for #79073, based on the patch by diff --git a/support/supportw.c b/support/supportw.c index 9c843e4c4f9..48f1a29d282 100644 --- a/support/supportw.c +++ b/support/supportw.c @@ -169,9 +169,11 @@ int SendMessageA (gpointer hwnd, uint msg, gpointer wparam, gpointer lparam) { fprintf (stderr, "SendMessage (%d, 0x%x, 0x%x, 0x%x)\n", hwnd, msg, wparam, lparam); + return 0; } int GetWindowLongA (gpointer hwnd, int a) { + return 0; }