diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-03-28 20:04:14 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-03-28 20:04:14 +0100 |
commit | 2901497b187ffcefbec73c4ac9b5270174e8682c (patch) | |
tree | 7546fe994305164a171948be01d7a261427b47d6 /mysys | |
parent | 78683672707bad90169b68b4c5d8aadc0e895f3d (diff) | |
download | mariadb-git-2901497b187ffcefbec73c4ac9b5270174e8682c.tar.gz |
MDEV-4243 Warnings/errors while compiling with clang
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/default.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/default.c b/mysys/default.c index c7ac0d89462..db1aa111cdf 100644 --- a/mysys/default.c +++ b/mysys/default.c @@ -814,7 +814,7 @@ static int search_default_file_with_ext(Process_option_func opt_handler, continue; /* Configuration File Directives */ - if ((*ptr == '!')) + if (*ptr == '!') { if (recursion_level >= max_recursion_level) { |