diff options
author | Elliott Baron <elliott@localhost.localdomain> | 2008-12-19 17:03:20 -0500 |
---|---|---|
committer | Elliott Baron <elliott@localhost.localdomain> | 2008-12-19 17:03:20 -0500 |
commit | 5fab0487aa45893289ad9a688a513eb7925f5133 (patch) | |
tree | 97678841b589acaeeafe998d382eac90aef143ae | |
parent | 51d997112e435da6fc84713ef09908b3b8659798 (diff) | |
download | systemtap-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.c | 3 |
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; |