src: Remove whitespace between 'sizeof' and '('
Change-Id: Iaf22dc1986427e8aa4521b0e9b40fafa5a29dbbd Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43720 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
committed by
Patrick Georgi
parent
89739baf53
commit
af56a77915
@@ -172,14 +172,14 @@ u8 h8_build_id_and_function_spec_version(char *buf, u8 buf_len)
|
||||
for (i = 0; i < 8; i++) {
|
||||
c = ec_read(0xf0 + i);
|
||||
if (c < 0x20 || c > 0x7f) {
|
||||
i = snprintf(str, sizeof (str), "*INVALID");
|
||||
i = snprintf(str, sizeof(str), "*INVALID");
|
||||
break;
|
||||
}
|
||||
str[i] = c;
|
||||
}
|
||||
|
||||
/* EC firmware function specification version */
|
||||
i += snprintf(str + i, sizeof (str) - i, "-%u.%u", ec_read(0xef), ec_read(0xeb));
|
||||
i += snprintf(str + i, sizeof(str) - i, "-%u.%u", ec_read(0xef), ec_read(0xeb));
|
||||
|
||||
i = MIN(buf_len, i);
|
||||
memcpy(buf, str, i);
|
||||
|
Reference in New Issue
Block a user