From f772f9c6d2a3abc196fcc76cfaaa96f8381902b0 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 21 Aug 2016 18:28:17 +0200 Subject: src/device: Add required space before opening parenthesis '(' Change-Id: I48477c2917ab1be14d3cedf25e8b97dae1c1d309 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/16289 Tested-by: build bot (Jenkins) Reviewed-by: Omar Pakker --- src/device/oprom/x86emu/ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/device/oprom/x86emu/ops.c') diff --git a/src/device/oprom/x86emu/ops.c b/src/device/oprom/x86emu/ops.c index 803e0c6728..9f890280e4 100644 --- a/src/device/oprom/x86emu/ops.c +++ b/src/device/oprom/x86emu/ops.c @@ -211,7 +211,7 @@ static void x86emuOp_genop_byte_RM_R(u8 op1) DECODE_PRINTF(x86emu_GenOpName[op1]); DECODE_PRINTF("\t"); FETCH_DECODE_MODRM(mod, rh, rl); - if(mod<3) + if (mod<3) { destoffset = decode_rmXX_address(mod,rl); DECODE_PRINTF(","); destval = fetch_data_byte(destoffset); @@ -251,7 +251,7 @@ static void x86emuOp_genop_word_RM_R(u8 op1) DECODE_PRINTF("\t"); FETCH_DECODE_MODRM(mod, rh, rl); - if(mod<3) { + if (mod<3) { destoffset = decode_rmXX_address(mod,rl); if (M.x86.mode & SYSMODE_PREFIX_DATA) { u32 destval; -- cgit v1.2.3