summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Kosov <claprix@yandex.ru>2020-04-24 22:22:01 +0300
committerEugene Kosov <claprix@yandex.ru>2020-04-25 21:46:31 +0300
commit62903434eb009cb0bcd5003b0a45914bd4c09886 (patch)
treeb7665a8817323476a5c0fc6bbf5f7de3ba46bc66
parent2b2dcf34f7325872b03534ebca31c396f449330f (diff)
downloadmariadb-git-62903434eb009cb0bcd5003b0a45914bd4c09886.tar.gz
fix s390x warning caused by gcc-5 bug
-rw-r--r--storage/innobase/include/log0log.h2
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;