diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-11-18 15:03:07 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-22 12:55:26 +0000 |
commit | b538d71e3230552e2942a83e61dd132693d5241c (patch) | |
tree | ea31733eb4d5f70c023c14beebfdb099234204b4 /src/security/vboot | |
parent | f903ef1d5f90728fac9d6772d9c33f9c5ed1501c (diff) |
security: Remove unnecessary space after casts
Change-Id: Ibd41382d0e0ef58498ac925dc9e10b54a76a798a
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69800
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/security/vboot')
-rw-r--r-- | src/security/vboot/vbnv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/vboot/vbnv.c b/src/security/vboot/vbnv.c index 26946fd335..e9223c08ae 100644 --- a/src/security/vboot/vbnv.c +++ b/src/security/vboot/vbnv.c @@ -24,7 +24,7 @@ static uint8_t crc8_vbnv(const uint8_t *data, int len) } } - return (uint8_t) (crc >> 8); + return (uint8_t)(crc >> 8); } void vbnv_reset(uint8_t *vbnv_copy) |