summaryrefslogtreecommitdiff
path: root/dbug
diff options
context:
space:
mode:
authorJoerg Bruehe <joerg@mysql.com>2010-03-15 19:01:22 +0100
committerJoerg Bruehe <joerg@mysql.com>2010-03-15 19:01:22 +0100
commit8bb0186df0779ebc83439f58a22143a83dbfbfeb (patch)
tree65776cb702eccaf803cfb760db67c5c716f091ab /dbug
parent89ea96a426edc56fe32fb91b47345c485b0261b2 (diff)
downloadmariadb-git-8bb0186df0779ebc83439f58a22143a83dbfbfeb.tar.gz
Another case of C++ syntax used for a comment in C.
Diffstat (limited to 'dbug')
-rw-r--r--dbug/dbug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbug/dbug.c b/dbug/dbug.c
index 9bcea988b33..01ce6f80768 100644
--- a/dbug/dbug.c
+++ b/dbug/dbug.c
@@ -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);
}