summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
authorroot <root@toddy.(none)>2008-12-05 11:15:06 -0500
committerroot <root@toddy.(none)>2008-12-05 11:15:06 -0500
commitb58523345ea01d313672f6896b02b447b6d1d82a (patch)
tree93bdefeeca9c3db69c5d5804ec32524ead923155 /staptree.cxx
parent3e122bea3dd507d0d355e4dead7fcbd73b72c0d9 (diff)
downloadsystemtap-steved-b58523345ea01d313672f6896b02b447b6d1d82a.tar.gz
systemtap-steved-b58523345ea01d313672f6896b02b447b6d1d82a.tar.xz
systemtap-steved-b58523345ea01d313672f6896b02b447b6d1d82a.zip
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;
}