diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2008-04-30 11:48:25 -0400 |
---|---|---|
committer | Masami Hiramatsu <mhiramat@redhat.com> | 2008-04-30 11:48:25 -0400 |
commit | 3b5ab982d758481ccd5003348391bea0b775d34b (patch) | |
tree | 020ab647762eea0dc683c8978a916323eccda784 /runtime/staprun/stapio.c | |
parent | ba6f838d2471c57fc3d8fc6d325766ff95ce108a (diff) | |
download | systemtap-steved-3b5ab982d758481ccd5003348391bea0b775d34b.tar.gz systemtap-steved-3b5ab982d758481ccd5003348391bea0b775d34b.tar.xz systemtap-steved-3b5ab982d758481ccd5003348391bea0b775d34b.zip |
PR5645: Fix sub-buffer size calculation and debug messages.
Diffstat (limited to 'runtime/staprun/stapio.c')
-rw-r--r-- | runtime/staprun/stapio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/staprun/stapio.c b/runtime/staprun/stapio.c index b591244f..3c8c4f7f 100644 --- a/runtime/staprun/stapio.c +++ b/runtime/staprun/stapio.c @@ -30,7 +30,7 @@ int main(int argc, char **argv) parse_args(argc, argv); if (buffer_size) - dbug(1, "Using a buffer of %u bytes.\n", buffer_size); + dbug(1, "Using a buffer of %u MB.\n", buffer_size); if (optind < argc) { parse_modpath(argv[optind++]); |