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
commit8dcbf6e20c9528f4e0eedd5e1be1d481215fe3db (patch)
treec875ec9df2c1c5133605fe134c52fdb4dc1c30b9 /dbug
parent24b9ff294cf00ffc5ae78b3b45f3d74bd34faa6f (diff)
parent29f098f2d3b8cabe352bd255567c4eae4bcfea00 (diff)
downloadmariadb-git-8dcbf6e20c9528f4e0eedd5e1be1d481215fe3db.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);
}