diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-12-05 11:36:12 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-12-05 11:36:12 -0500 |
commit | a87d1bf186b8060231a374334e399737f6d860a4 (patch) | |
tree | dc2b9936968ab575e21a62fa9e500ec8f166cdb4 /staptree.cxx | |
parent | 0dc343224e63d8c6f2ba4f0688c93c8c9b5781b6 (diff) | |
parent | b58523345ea01d313672f6896b02b447b6d1d82a (diff) | |
download | systemtap-steved-a87d1bf186b8060231a374334e399737f6d860a4.tar.gz systemtap-steved-a87d1bf186b8060231a374334e399737f6d860a4.tar.xz systemtap-steved-a87d1bf186b8060231a374334e399737f6d860a4.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
* 'master' of ssh://sources.redhat.com/git/systemtap:
PR7051: Remove broken printf %n directive support
Diffstat (limited to 'staptree.cxx')
-rw-r--r-- | staptree.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/staptree.cxx b/staptree.cxx index 38166c54..51992d7a 100644 --- a/staptree.cxx +++ b/staptree.cxx @@ -494,10 +494,6 @@ print_format::components_to_string(vector<format_component> const & components) oss << 'm'; break; - case conv_size: - oss << 'n'; - break; - default: break; } @@ -684,10 +680,6 @@ print_format::string_to_components(string const & str) curr.type = conv_unsigned_lowercase_hex; break; - case 'n': - curr.type = conv_size; - break; - default: break; } |