From 34aa860fbd15c3a9ce57cd26bdf8cbf14e138734 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Wed, 10 Apr 2019 22:20:45 +0200 Subject: [PATCH] more [-Wmissing-field-initializers] --- client/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/util.h b/client/util.h index 5d6643c73..2fb0d5ce8 100644 --- a/client/util.h +++ b/client/util.h @@ -174,7 +174,7 @@ #ifndef DropField #define DropField() { \ - UsbCommand c_drop = {CMD_READER_ISO_14443a, {0,0,0}}; clearCommandBuffer(); SendCommand(&c_drop); \ + UsbCommand c_drop = {CMD_READER_ISO_14443a, {0,0,0}, {{0}}}; clearCommandBuffer(); SendCommand(&c_drop); \ } #endif