From: Bart Van Assche Date: Thu, 23 Jul 2009 19:01:35 +0000 (+0000) Subject: Fixed two typo's. X-Git-Tag: svn/VALGRIND_3_5_0~279 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=08181a2489fd85cf789241110843d7d83de388f5;p=thirdparty%2Fvalgrind.git Fixed two typo's. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10569 --- diff --git a/drd/drd.h b/drd/drd.h index 9669f0978c..008a807566 100644 --- a/drd/drd.h +++ b/drd/drd.h @@ -244,14 +244,14 @@ /** Tell DRD to ignore all memory accesses performed by the current thread. */ #define ANNOTATE_IGNORE_READS_AND_WRITES_BEGIN() \ - do { DRDCL_(set_record_loads)(0); DRD_(set_record_stores)(0); } while(0) + do { DRDCL_(set_record_loads)(0); DRDCL_(set_record_stores)(0); } while(0) /** * Tell DRD to no longer ignore the memory accesses performed by the current * thread. */ #define ANNOTATE_IGNORE_READS_AND_WRITES_END() \ - do { DRDCL_(set_record_loads)(1); DRD_(set_record_stores)(1); } while(0) + do { DRDCL_(set_record_loads)(1); DRDCL_(set_record_stores)(1); } while(0) /** * Tell DRD that size bytes starting at addr has been allocated by a custom