|
From: <sv...@va...> - 2014-09-05 21:52:37
|
Author: florian
Date: Fri Sep 5 21:52:29 2014
New Revision: 2946
Log:
Use const instead of a comment.
Modified:
trunk/priv/main_main.c
trunk/pub/libvex.h
Modified: trunk/priv/main_main.c
==============================================================================
--- trunk/priv/main_main.c (original)
+++ trunk/priv/main_main.c Fri Sep 5 21:52:29 2014
@@ -116,7 +116,7 @@
/* Are we supporting valgrind checking? */
Bool valgrind_support,
/* Control ... */
- /*READONLY*/VexControl* vcon
+ const VexControl* vcon
)
{
/* First off, do enough minimal setup so that the following
Modified: trunk/pub/libvex.h
==============================================================================
--- trunk/pub/libvex.h (original)
+++ trunk/pub/libvex.h Fri Sep 5 21:52:29 2014
@@ -583,7 +583,7 @@
Bool valgrind_support,
/* Control ... */
- /*READONLY*/VexControl* vcon
+ const VexControl* vcon
);
|