summaryrefslogtreecommitdiff
path: root/src/vsnprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vsnprintf.c')
-rw-r--r--src/vsnprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vsnprintf.c b/src/vsnprintf.c
index cfbef00db..8d1752b91 100644
--- a/src/vsnprintf.c
+++ b/src/vsnprintf.c
@@ -76,7 +76,7 @@ int fl_vsnprintf(char* buffer, size_t bufsize, const char* format, va_list ap) {
} else sign = 0;
if (*format == '*') {
- // Get width from argument...
+ /* Get width from argument... */
format ++;
width = va_arg(ap, int);
snprintf(tptr, sizeof(tformat) - (tptr - tformat), "%d", width);
@@ -94,7 +94,7 @@ int fl_vsnprintf(char* buffer, size_t bufsize, const char* format, va_list ap) {
format ++;
if (*format == '*') {
- // Get precision from argument...
+ /* Get precision from argument... */
format ++;
prec = va_arg(ap, int);
snprintf(tptr, sizeof(tformat) - (tptr - tformat), "%d", prec);