1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

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 <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/41776
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Angel Pons 2020-05-27 12:17:31 +02:00
parent 3a0c1966e4
commit 6f793e4500

View File

@ -229,7 +229,7 @@ struct flashrom_chipset_info *flashrom_supported_chipsets(void)
supported_chipsets[i].chipset_id = chipset[i].device_id; supported_chipsets[i].chipset_id = chipset[i].device_id;
supported_chipsets[i].status = supported_chipsets[i].status =
(enum flashrom_test_state) chipset[i].status; (enum flashrom_test_state) chipset[i].status;
} }
} else { } else {
msg_gerr("Memory allocation error!\n"); msg_gerr("Memory allocation error!\n");
} }