From 6f793e4500a04b096676555dced98b207e06eeb7 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Wed, 27 May 2020 12:17:31 +0200 Subject: [PATCH] libflashrom.c: Fix indentation of a brace It was indented with two spaces instead of one tab. Fix it. Change-Id: I18051ae4433b267b9552a034a67d7830b9206c20 Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/flashrom/+/41776 Tested-by: build bot (Jenkins) Reviewed-by: HAOUAS Elyes Reviewed-by: Paul Menzel Reviewed-by: Arthur Heymans --- libflashrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libflashrom.c b/libflashrom.c index c20d9c71e..ae2d33daa 100644 --- a/libflashrom.c +++ b/libflashrom.c @@ -229,7 +229,7 @@ struct flashrom_chipset_info *flashrom_supported_chipsets(void) supported_chipsets[i].chipset_id = chipset[i].device_id; supported_chipsets[i].status = (enum flashrom_test_state) chipset[i].status; - } + } } else { msg_gerr("Memory allocation error!\n"); }