1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

BUG#11567 Fixed binlog tests on windows.

This commit is contained in:
elliot@mysql.com
2005-07-18 17:47:26 -04:00
parent 086c3206f0
commit 22be12ab86

View File

@@ -242,7 +242,7 @@ static void print_set_option(FILE* file, uint32 bits_changed, uint32 option,
{ {
if (*need_comma) if (*need_comma)
fprintf(file,", "); fprintf(file,", ");
fprintf(file,"%s=%d", name, (bool)(flags & option)); fprintf(file,"%s=%d", name, test(flags & option));
*need_comma= 1; *need_comma= 1;
} }
} }