Skip to content

Commit bfbf0f2

Browse files
committed
MDEV-20525: Fix the -std=c90 builds
1 parent b214264 commit bfbf0f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbug/dbug.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2262,8 +2262,8 @@ extern my_bool my_assert;
22622262
ATTRIBUTE_COLD
22632263
my_bool _db_my_assert(const char *file, int line, const char *msg)
22642264
{
2265-
_db_flush_();
22662265
my_bool a = my_assert;
2266+
_db_flush_();
22672267
if (!a)
22682268
fprintf(stderr, "%s:%d: assert: %s\n", file, line, msg);
22692269
return a;

0 commit comments

Comments
 (0)