diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-08-30 15:03:55 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-09-04 10:33:52 +0200 |
commit | 2d2286faf3085160dbe345fe403c11c712a358ff (patch) | |
tree | f69bbeda6f3fe6bb26a2d132500d973f41f5881b /sql/rpl_mi.h | |
parent | 86b06a0e52b7583858df81fec8bd57cfe02b9999 (diff) | |
download | mariadb-git-2d2286faf3085160dbe345fe403c11c712a358ff.tar.gz |
cleanup: use enum_binlog_checksum_alg, not uint8
* fix unireg.h includes
* use enum_binlog_checksum_alg for binlog checksum variables,
not uint8
Diffstat (limited to 'sql/rpl_mi.h')
-rw-r--r-- | sql/rpl_mi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/rpl_mi.h b/sql/rpl_mi.h index 7ba64a9dc92..69d602c1dcb 100644 --- a/sql/rpl_mi.h +++ b/sql/rpl_mi.h @@ -218,7 +218,7 @@ class Master_info : public Slave_reporting_capability Initialized to novalue, then set to the queried from master @@global.binlog_checksum and deactivated once FD has been received. */ - uint8 checksum_alg_before_fd; + enum enum_binlog_checksum_alg checksum_alg_before_fd; uint connect_retry; #ifndef DBUG_OFF int events_till_disconnect; |