diff options
author | Eric Blossom | 2010-09-26 15:59:43 -0700 |
---|---|---|
committer | Eric Blossom | 2010-09-27 14:56:44 -0700 |
commit | 30d657c09338afe8dd0e8fb4d8fc184169834c09 (patch) | |
tree | 959486c07fcc556610e2f27679dc5cb3cb4f7928 /vrt/lib/expanded_if_context_section.cc | |
parent | 518c70341880906231285fb66ea7335e89218c91 (diff) | |
download | gnuradio-30d657c09338afe8dd0e8fb4d8fc184169834c09.tar.gz gnuradio-30d657c09338afe8dd0e8fb4d8fc184169834c09.tar.bz2 gnuradio-30d657c09338afe8dd0e8fb4d8fc184169834c09.zip |
Additional width for hertz
Diffstat (limited to 'vrt/lib/expanded_if_context_section.cc')
-rw-r--r-- | vrt/lib/expanded_if_context_section.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vrt/lib/expanded_if_context_section.cc b/vrt/lib/expanded_if_context_section.cc index 48dddd387..b44cc9b0b 100644 --- a/vrt/lib/expanded_if_context_section.cc +++ b/vrt/lib/expanded_if_context_section.cc @@ -347,7 +347,7 @@ namespace vrt static void wr_hertz(std::ostream &os, vrt_hertz_t x) { - os << format("%10g Hz") % vrt_hertz_to_double(x); + os << format("%12g Hz") % vrt_hertz_to_double(x); os << std::endl; } |