diff options
author | Sergei Golubchik <serg@mariadb.org> | 2014-09-04 21:37:10 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2014-10-01 23:38:26 +0200 |
commit | fe0ff580009a5d5bdb853224568a7eaaf147f060 (patch) | |
tree | 46448ec4258173b05c81681e2d1405138539dde3 /include/wsrep.h | |
parent | fc2df3c637d51c4ab32132e2d8f63dbe7e80f056 (diff) | |
download | mariadb-git-fe0ff580009a5d5bdb853224568a7eaaf147f060.tar.gz |
compiler warnings
Diffstat (limited to 'include/wsrep.h')
-rw-r--r-- | include/wsrep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wsrep.h b/include/wsrep.h index c261d9c4b5f..9e0f052b340 100644 --- a/include/wsrep.h +++ b/include/wsrep.h @@ -23,7 +23,7 @@ #if !defined(EMBEDDED_LIBRARY) #define WSREP_FORMAT(my_format) \ ((wsrep_forced_binlog_format != BINLOG_FORMAT_UNSPEC) ? \ - wsrep_forced_binlog_format : my_format) + ((enum enum_binlog_format)wsrep_forced_binlog_format) : my_format) #else #define WSREP_FORMAT(my_format) my_format #endif /* && !EMBEDDED_LIBRARY */ |