From: Florian Krohm Date: Fri, 5 Sep 2014 21:52:29 +0000 (+0000) Subject: Use const instead of a comment. X-Git-Tag: svn/VALGRIND_3_10_1^2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebf7e4642241710b81f065635483d6705f4020eb;p=thirdparty%2Fvalgrind.git Use const instead of a comment. git-svn-id: svn://svn.valgrind.org/vex/trunk@2946 --- diff --git a/VEX/priv/main_main.c b/VEX/priv/main_main.c index 21889e3ef4..0322a349fe 100644 --- a/VEX/priv/main_main.c +++ b/VEX/priv/main_main.c @@ -116,7 +116,7 @@ void LibVEX_Init ( /* 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 diff --git a/VEX/pub/libvex.h b/VEX/pub/libvex.h index 3019dedc1c..ec48002ac7 100644 --- a/VEX/pub/libvex.h +++ b/VEX/pub/libvex.h @@ -583,7 +583,7 @@ extern void LibVEX_Init ( Bool valgrind_support, /* Control ... */ - /*READONLY*/VexControl* vcon + const VexControl* vcon );