diff options
Diffstat (limited to 'translate.cxx')
-rw-r--r-- | translate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate.cxx b/translate.cxx index 1a8e23b1..3a8d0bec 100644 --- a/translate.cxx +++ b/translate.cxx @@ -1310,7 +1310,7 @@ c_unparser::visit_if_statement (if_statement *s) { o->newline() << "else {"; o->indent (1); - s->thenblock->visit (this); + s->elseblock->visit (this); o->newline(-1) << "}"; } } |