summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2006-01-11 19:07:54 +0000
committerfche <fche>2006-01-11 19:07:54 +0000
commit8656ed8fa9ea0cd481629c63cc4d9d9519012ca6 (patch)
tree3510c8a4e183d9374cc464a2e0c7c6afaf90f024
parent2fae2e30747d90e125f5cf9f901ba028b1a1a697 (diff)
downloadsystemtap-steved-8656ed8fa9ea0cd481629c63cc4d9d9519012ca6.tar.gz
systemtap-steved-8656ed8fa9ea0cd481629c63cc4d9d9519012ca6.tar.xz
systemtap-steved-8656ed8fa9ea0cd481629c63cc4d9d9519012ca6.zip
2006-01-11 Frank Ch. Eigler <fche@elastic.org>
* translate.cxx (MAXERRORS): Oops, set back to intended default of 1.
-rw-r--r--ChangeLog4
-rw-r--r--translate.cxx2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e2ca0a7..06f5cdf7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-11 Frank Ch. Eigler <fche@elastic.org>
+
+ * translate.cxx (MAXERRORS): Oops, set back to intended default of 1.
+
2006-01-10 Frank Ch. Eigler <fche@redhat.com>
PR 1972.
diff --git a/translate.cxx b/translate.cxx
index 992bd96c..3cf4228a 100644
--- a/translate.cxx
+++ b/translate.cxx
@@ -3518,7 +3518,7 @@ translate_pass (systemtap_session& s)
s.op->newline() << "#define MAXMAPENTRIES 2048";
s.op->newline() << "#endif";
s.op->newline() << "#ifndef MAXERRORS";
- s.op->newline() << "#define MAXERRORS 10";
+ s.op->newline() << "#define MAXERRORS 1";
s.op->newline() << "#endif";
s.op->newline() << "#ifndef MAXSKIPPED";
s.op->newline() << "#define MAXSKIPPED 100";