summaryrefslogtreecommitdiff
path: root/main/snprintf.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2001-05-01 16:33:09 +0000
committerAndi Gutmans <andi@php.net>2001-05-01 16:33:09 +0000
commitab9a7a5f5f3153adc27952d7b9e7d4cf093593d1 (patch)
tree3c4d2f12d49351015cb21edb2198c1a83f150bbe /main/snprintf.c
parentd04562e84552fbdd9444a26a98e85ba78287b425 (diff)
downloadphp-git-ab9a7a5f5f3153adc27952d7b9e7d4cf093593d1.tar.gz
- Remove C++ comment
Diffstat (limited to 'main/snprintf.c')
-rw-r--r--main/snprintf.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/main/snprintf.c b/main/snprintf.c
index e4d42d5fff..d5caeff860 100644
--- a/main/snprintf.c
+++ b/main/snprintf.c
@@ -112,7 +112,6 @@ static char *
*/
if (fi != 0) {
p1 = &buf[NDIG];
-// while (fi != 0) {
while (p1 > &buf[0] && fi != 0) {
fj = modf(fi / 10, &fi);
*--p1 = (int) ((fj + .03) * 10) + '0';