Another case of C++ syntax used for a comment in C.

This commit is contained in:
Joerg Bruehe 2010-03-15 19:01:22 +01:00
parent 89ea96a426
commit 8bb0186df0

View file

@ -1365,7 +1365,7 @@ static void DbugVfprintf(FILE *stream, const char* format, va_list args)
{
char cvtbuf[1024];
size_t len;
// Do not use my_vsnprintf, it does not support "%g".
/* Do not use my_vsnprintf, it does not support "%g". */
len = vsnprintf(cvtbuf, sizeof(cvtbuf), format, args);
(void) fprintf(stream, "%s\n", cvtbuf);
}