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:
Elyes HAOUAS
2020-07-22 20:36:20 +02:00
committed by Patrick Georgi
parent 89739baf53
commit af56a77915
7 changed files with 26 additions and 26 deletions

View File

@@ -170,7 +170,7 @@ void x86emu_decode_printf (const char *x)
void x86emu_decode_printf2 (const char *x, int y)
{
char temp[100];
snprintf(temp, sizeof (temp), x,y);
snprintf(temp, sizeof(temp), x,y);
strcpy(M.x86.decoded_buf+M.x86.enc_str_pos,temp);
M.x86.enc_str_pos += strlen(temp);
}