]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
exp-dhat Char/HChar fixes.
authorFlorian Krohm <florian@eich-krohm.de>
Sat, 20 Oct 2012 19:34:13 +0000 (19:34 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Sat, 20 Oct 2012 19:34:13 +0000 (19:34 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13063

exp-dhat/dh_main.c

index fcb7d8bb687c62ab34b92ed2dd623b35c1f36319..933daa7183d4e547a2880d12a88471a11651b4bc 100644 (file)
@@ -1031,7 +1031,7 @@ IRSB* dh_instrument ( VgCallbackClosure* closure,
 // FORWARDS
 static Bool identify_metric ( /*OUT*/ULong(**get_metricP)(APInfo*),
                               /*OUT*/Bool* increasingP,
-                              Char* metric_name );
+                              HChar* metric_name );
 
 static Int    clo_show_top_n = 10;
 static HChar* clo_sort_by    = "max-bytes-live";
@@ -1184,7 +1184,7 @@ static ULong get_metric__max_blocks_live ( APInfo* api ) {
    string could not be identified.*/
 static Bool identify_metric ( /*OUT*/ULong(**get_metricP)(APInfo*),
                               /*OUT*/Bool* increasingP,
-                              Char* metric_name )
+                              HChar* metric_name )
 {
    if (0 == VG_(strcmp)(metric_name, "max-bytes-live")) {
       *get_metricP = get_metric__max_bytes_live;