From: Julian Seward Date: Fri, 9 Feb 2007 17:45:09 +0000 (+0000) Subject: Oops; make declarations match definitions. So much for C's type system. X-Git-Tag: svn/VALGRIND_3_3_0~384 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73a17ab6f3d4c4418051bc7859baa3d8e8ceb154;p=thirdparty%2Fvalgrind.git Oops; make declarations match definitions. So much for C's type system. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6580 --- diff --git a/coregrind/pub_core_options.h b/coregrind/pub_core_options.h index 52e84a9bc6..662d9e16ef 100644 --- a/coregrind/pub_core_options.h +++ b/coregrind/pub_core_options.h @@ -101,9 +101,9 @@ extern Int VG_(clo_n_suppressions); extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES]; /* DEBUG: print generated code? default: 00000000 ( == NO ) */ -extern Bool VG_(clo_trace_flags); +extern UChar VG_(clo_trace_flags); /* DEBUG: do bb profiling? default: 00000000 ( == NO ) */ -extern Bool VG_(clo_profile_flags); +extern UChar VG_(clo_profile_flags); /* DEBUG: if tracing codegen, be quiet until after this bb ( 0 ) */ extern Int VG_(clo_trace_notbelow); /* DEBUG: print system calls? default: NO */