summaryrefslogtreecommitdiff
path: root/dbug
diff options
context:
space:
mode:
authorJoerg Bruehe <joerg@mysql.com>2010-04-18 15:32:05 +0200
committerJoerg Bruehe <joerg@mysql.com>2010-04-18 15:32:05 +0200
commit4b68b2d289ab338d5bd9c6f15d64e31a1d4be0dc (patch)
treec875ec9df2c1c5133605fe134c52fdb4dc1c30b9 /dbug
parent091745c8a571e36a0bc4bb1f2230ef2aa81c00a7 (diff)
parentc62d8e5cb5ae57cedd08f761e99cab0e98f8496a (diff)
downloadmariadb-git-4b68b2d289ab338d5bd9c6f15d64e31a1d4be0dc.tar.gz
Merge the changes of the 5.5.3-m3 release build
back into the development branches.
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 d75a5ae269e..0355d553cff 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);
}