|
From: <sv...@va...> - 2011-07-25 08:50:34
|
Author: bart
Date: 2011-07-25 09:45:45 +0100 (Mon, 25 Jul 2011)
New Revision: 11913
Log:
valgrind.h: Remove a superfluous cast. See also #278454.
Modified:
trunk/include/valgrind.h
Modified: trunk/include/valgrind.h
===================================================================
--- trunk/include/valgrind.h 2011-07-24 21:41:41 UTC (rev 11912)
+++ trunk/include/valgrind.h 2011-07-25 08:45:45 UTC (rev 11913)
@@ -4000,7 +4000,7 @@
/* Unmark the piece of memory associated with a stack id as being a
stack. */
#define VALGRIND_STACK_DEREGISTER(id) \
- (unsigned)VALGRIND_DO_CLIENT_REQUEST_EXPR(0, \
+ VALGRIND_DO_CLIENT_REQUEST_EXPR(0, \
VG_USERREQ__STACK_DEREGISTER, \
id, 0, 0, 0, 0)
|