From 62903434eb009cb0bcd5003b0a45914bd4c09886 Mon Sep 17 00:00:00 2001 From: Eugene Kosov Date: Fri, 24 Apr 2020 22:22:01 +0300 Subject: [PATCH] fix s390x warning caused by gcc-5 bug --- storage/innobase/include/log0log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; /** the first guaranteed-durable log sequence number */ std::atomic flushed_to_disk_lsn;