diff options
author | Mark Kettenis <kettenis@gnu.org> | 2002-12-15 16:05:37 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2002-12-15 16:05:37 +0000 |
commit | a3edc55b09c94f981318df016ee6cca060ba9ffa (patch) | |
tree | 21954d612f580acc6e7bfbd4da579ea421814ec7 /gdb/ui-out.c | |
parent | d3c18e0f5c48b4cbc5d22a480affda551d7d960a (diff) | |
download | gdb-a3edc55b09c94f981318df016ee6cca060ba9ffa.zip gdb-a3edc55b09c94f981318df016ee6cca060ba9ffa.tar.gz gdb-a3edc55b09c94f981318df016ee6cca060ba9ffa.tar.bz2 |
* ui-out.c (MAX_UI_OUT_LEVELS): Raise to 6. Fixes PR cli/654.
Diffstat (limited to 'gdb/ui-out.c')
-rw-r--r-- | gdb/ui-out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ui-out.c b/gdb/ui-out.c index da7740f..d98cf16 100644 --- a/gdb/ui-out.c +++ b/gdb/ui-out.c @@ -45,7 +45,7 @@ struct ui_out_hdr is always available. Stack/nested level 0 is reserved for the top-level result. */ -enum { MAX_UI_OUT_LEVELS = 5 }; +enum { MAX_UI_OUT_LEVELS = 6 }; struct ui_out_level { |