From: fche Date: Wed, 11 Jan 2006 19:07:54 +0000 (+0000) Subject: 2006-01-11 Frank Ch. Eigler X-Git-Tag: release-0.5.3~9 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=8656ed8fa9ea0cd481629c63cc4d9d9519012ca6;p=systemtap.git 2006-01-11 Frank Ch. Eigler * translate.cxx (MAXERRORS): Oops, set back to intended default of 1. --- diff --git a/ChangeLog b/ChangeLog index 4e2ca0a7c..06f5cdf79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-01-11 Frank Ch. Eigler + + * translate.cxx (MAXERRORS): Oops, set back to intended default of 1. + 2006-01-10 Frank Ch. Eigler PR 1972. diff --git a/translate.cxx b/translate.cxx index 992bd96ca..3cf4228ab 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";