From 1ddda8f79bb630646403d02ff3f0f97660f0df50 Mon Sep 17 00:00:00 2001 From: Tomasz Michalak Date: Wed, 2 Dec 2020 12:03:14 +0100 Subject: [PATCH] bits2rbt: Fix compilation error Signed-off-by: Tomasz Michalak --- tools/bits2rbt/configuration_packets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bits2rbt/configuration_packets.h b/tools/bits2rbt/configuration_packets.h index 11cb6637..61f45f62 100644 --- a/tools/bits2rbt/configuration_packets.h +++ b/tools/bits2rbt/configuration_packets.h @@ -34,7 +34,7 @@ class ConfigurationPackets { const uint32_t kCmdReg = 0x4; const uint32_t kWcfgCmd = 0x1; // Writing the RCRC(0x7) command in type 1 packet with 1 word to the CMD register (0x30008001) - const std::array kRCrcCmd = {0x30008001, 0x7}; + const std::array kRCrcCmd = {{0x30008001, 0x7}}; size_t words_per_frame_; std::string architecture_; ConfigurationFrames configuration_data_packets_;