1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

Fix several -Wno-missing-field-initializers warnings

Change-Id: Ib4487d4c1a38fa8471fa1f9034604412e9d14cf7
Signed-off-by: Richard Hughes <richard@hughsie.com>
Reviewed-on: https://review.coreboot.org/c/30405
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Richard Hughes
2018-12-19 11:57:15 +00:00
committed by Nico Huber
parent 93e1625f9f
commit df49058227
3 changed files with 8 additions and 2 deletions

View File

@ -150,7 +150,7 @@ int main(int argc, char *argv[])
const char *fn = NULL;
const char *csn = NULL;
enum ich_chipset cs = CHIPSET_ICH_UNKNOWN;
struct ich_descriptors desc = {{ 0 }};
struct ich_descriptors desc = { 0 };
while ((opt = getopt(argc, argv, "df:c:")) != -1) {
switch (opt) {