From: Bart Van Assche Date: Tue, 10 Nov 2009 15:11:30 +0000 (+0000) Subject: Fixed a compiler warning. X-Git-Tag: svn/VALGRIND_3_6_0~476 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c584ecf10f46be451711bf63c4506f9ecfd26ee0;p=thirdparty%2Fvalgrind.git Fixed a compiler warning. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10936 --- diff --git a/coregrind/vg_preloaded.c b/coregrind/vg_preloaded.c index 1500e80525..b6106beb0a 100644 --- a/coregrind/vg_preloaded.c +++ b/coregrind/vg_preloaded.c @@ -90,7 +90,7 @@ void * VG_NOTIFY_ON_LOAD(ifunc_wrapper) (void) VALGRIND_DO_CLIENT_REQUEST(res, 0, VG_USERREQ__ADD_IFUNC_TARGET, fn.nraddr, result, 0, 0, 0); - return result; + return (void*)result; } #elif defined(VGO_darwin)