From 22be12ab86e0114b8a72c4962380c25bfe57b10c Mon Sep 17 00:00:00 2001 From: "elliot@mysql.com" <> Date: Mon, 18 Jul 2005 17:47:26 -0400 Subject: [PATCH] BUG#11567 Fixed binlog tests on windows. --- sql/log_event.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/log_event.cc b/sql/log_event.cc index 0873ee50743..90837f98d6a 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -242,7 +242,7 @@ static void print_set_option(FILE* file, uint32 bits_changed, uint32 option, { if (*need_comma) fprintf(file,", "); - fprintf(file,"%s=%d", name, (bool)(flags & option)); + fprintf(file,"%s=%d", name, test(flags & option)); *need_comma= 1; } }