summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Baron <elliott@localhost.localdomain>2008-12-19 17:03:20 -0500
committerElliott Baron <elliott@localhost.localdomain>2008-12-19 17:03:20 -0500
commit5fab0487aa45893289ad9a688a513eb7925f5133 (patch)
tree97678841b589acaeeafe998d382eac90aef143ae
parent51d997112e435da6fc84713ef09908b3b8659798 (diff)
downloadsystemtap-steved-5fab0487aa45893289ad9a688a513eb7925f5133.tar.gz
systemtap-steved-5fab0487aa45893289ad9a688a513eb7925f5133.tar.xz
systemtap-steved-5fab0487aa45893289ad9a688a513eb7925f5133.zip
Removed left over remnant from previous implementation
-rw-r--r--runtime/vsprintf.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/vsprintf.c b/runtime/vsprintf.c
index 60852872..2c3067cf 100644
--- a/runtime/vsprintf.c
+++ b/runtime/vsprintf.c
@@ -311,9 +311,6 @@ int _stp_vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
else {
for (i = 0; i < len; ++i) {
if (str <= end) {
- //if (*fmt == 'M')
- //str = number(str, str + 2, (uint64_t)(unsigned char) *s, 16, 2, 2, STP_SPACE);
- //else
*str = *s;
}
++str; ++s;