diff options
-rw-r--r-- | translate.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/translate.cxx b/translate.cxx index 69b16304..8d20e8f6 100644 --- a/translate.cxx +++ b/translate.cxx @@ -1654,13 +1654,13 @@ c_unparser::emit_probe (derived_probe* v) // NB: no need to uninitialize locals, except if arrays/stats can // someday be local - // XXX: do this flush only if the body included a - // print/printf/etc. routine! - o->newline(1) << "_stp_print_flush();"; - + o->indent(1); if (v->needs_global_locks ()) emit_unlocks (vut); + // XXX: do this flush only if the body included a + // print/printf/etc. routine! + o->newline() << "_stp_print_flush();"; o->newline(-1) << "}\n"; } |