summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-12-05 11:36:12 -0500
committerFrank Ch. Eigler <fche@elastic.org>2008-12-05 11:36:12 -0500
commita87d1bf186b8060231a374334e399737f6d860a4 (patch)
treedc2b9936968ab575e21a62fa9e500ec8f166cdb4 /staptree.cxx
parent0dc343224e63d8c6f2ba4f0688c93c8c9b5781b6 (diff)
parentb58523345ea01d313672f6896b02b447b6d1d82a (diff)
downloadsystemtap-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.cxx8
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;
}