diff options
author | Eugene Kosov <claprix@yandex.ru> | 2020-04-24 22:22:01 +0300 |
---|---|---|
committer | Eugene Kosov <claprix@yandex.ru> | 2020-04-25 21:46:31 +0300 |
commit | 62903434eb009cb0bcd5003b0a45914bd4c09886 (patch) | |
tree | b7665a8817323476a5c0fc6bbf5f7de3ba46bc66 | |
parent | 2b2dcf34f7325872b03534ebca31c396f449330f (diff) | |
download | mariadb-git-62903434eb009cb0bcd5003b0a45914bd4c09886.tar.gz |
fix s390x warning caused by gcc-5 bug
-rw-r--r-- | storage/innobase/include/log0log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/include/log0log.h b/storage/innobase/include/log0log.h index d8988f4a123..9fa0fd919c8 100644 --- a/storage/innobase/include/log0log.h +++ b/storage/innobase/include/log0log.h @@ -523,7 +523,7 @@ struct log_t{ private: /** The log sequence number of the last change of durable InnoDB files */ - alignas(CACHE_LINE_SIZE) + MY_ALIGNED(CACHE_LINE_SIZE) std::atomic<lsn_t> lsn; /** the first guaranteed-durable log sequence number */ std::atomic<lsn_t> flushed_to_disk_lsn; |