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
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user