mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
Another case of C++ syntax used for a comment in C.
This commit is contained in:
parent
89ea96a426
commit
8bb0186df0
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue