]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fixed two typo's.
authorBart Van Assche <bvanassche@acm.org>
Thu, 23 Jul 2009 19:01:35 +0000 (19:01 +0000)
committerBart Van Assche <bvanassche@acm.org>
Thu, 23 Jul 2009 19:01:35 +0000 (19:01 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10569

drd/drd.h

index 9669f0978ccd2f0ba974307c5f3f41c088e1a5f7..008a807566ff0cbae723ad0e05eafa3525584749 100644 (file)
--- a/drd/drd.h
+++ b/drd/drd.h
 
 /** 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