Made the setting of VG_(details).avg_translation_sizeB optional, defaulting to
100 bytes (added VG_DEFAULT_TRANS_SIZEB).  Took the now-unnecessary settings
out of Nulgrind and CoreCheck.  Also made .avg_translation_sizeB a UInt (from
an Int), to avoid possibility of negatives.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1413 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_include.h b/coregrind/vg_include.h
index 394e57c..a45f660 100644
--- a/coregrind/vg_include.h
+++ b/coregrind/vg_include.h
@@ -293,7 +293,7 @@
       Char* description;
       Char* copyright_author;
       Char* bug_reports_to;
-      Int   avg_translation_sizeB;
+      UInt  avg_translation_sizeB;
    }
    VgDetails;