diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2009-03-24 19:14:57 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-03-24 19:15:12 -0400 |
commit | c87193cfb18258abbad947d009e6ca0bd2d5e0cf (patch) | |
tree | 99b563155918d28200bcb5c81718370083d7a2fb | |
parent | d10b4351a0bc2386ff15c806bfc3cd531fe883f0 (diff) | |
download | systemtap-steved-c87193cfb18258abbad947d009e6ca0bd2d5e0cf.tar.gz systemtap-steved-c87193cfb18258abbad947d009e6ca0bd2d5e0cf.tar.xz systemtap-steved-c87193cfb18258abbad947d009e6ca0bd2d5e0cf.zip |
brown paper bag fix for commit 5d6b0142
return != break
-rw-r--r-- | translate.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/translate.cxx b/translate.cxx index 55b266bf..0b81d9bb 100644 --- a/translate.cxx +++ b/translate.cxx @@ -4824,7 +4824,7 @@ emit_symbol_data (systemtap_session& s) do { if (pending_interrupts) return; - if (ctx.undone_unwindsym_modules.empty()) return; + if (ctx.undone_unwindsym_modules.empty()) break; off = dwfl_getmodules (dwfl, &dump_unwindsyms, (void *) &ctx, 0); } while (off > 0); @@ -4863,7 +4863,7 @@ emit_symbol_data (systemtap_session& s) do { if (pending_interrupts) return; - if (ctx.undone_unwindsym_modules.empty()) return; + if (ctx.undone_unwindsym_modules.empty()) break; off = dwfl_getmodules (dwfl, &dump_unwindsyms, (void *) &ctx, 0); } while (off > 0); |