From 0cb8088cc42f42015400a789cac4ddd45a1ab978 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Fri, 20 Nov 2020 16:32:06 -0500 Subject: [PATCH] vial: explicitly define VIAL_PROTOCOL_VERSION as 32-bit --- quantum/vial.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/vial.h b/quantum/vial.h index c1ff05d39a..b3df6fdbe2 100644 --- a/quantum/vial.h +++ b/quantum/vial.h @@ -18,6 +18,6 @@ #include -#define VIAL_PROTOCOL_VERSION 0x00000000 +#define VIAL_PROTOCOL_VERSION ((uint32_t)0x00000000) void vial_handle_cmd(uint8_t *data, uint8_t length);