diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2005-08-29 20:16:36 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2005-08-29 20:16:36 +0000 |
| commit | a2effb7c2becc11fac6cb55bff1d9635773c65ee (patch) | |
| tree | 62ab0e6ee79c74dedeadd3e46cdcf59a260a3b3d /src/vsnprintf.c | |
| parent | d952d9b9d6dba689f770918af4d66c58fb95c32e (diff) | |
Fixed C++ style comments in plain C files (STR #997)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4548 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/vsnprintf.c')
| -rw-r--r-- | src/vsnprintf.c | 4 |
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); |
