diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-08-21 18:28:17 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-28 18:27:52 +0200 |
commit | f772f9c6d2a3abc196fcc76cfaaa96f8381902b0 (patch) | |
tree | a1027e46ec626611128664bce34f63f13275c880 /src/device/oprom/x86emu/ops.c | |
parent | 11fc8015bd77c9b4212d2eac6e8254599a24bfed (diff) | |
download | coreboot-f772f9c6d2a3abc196fcc76cfaaa96f8381902b0.tar.xz |
src/device: Add required space before opening parenthesis '('
Change-Id: I48477c2917ab1be14d3cedf25e8b97dae1c1d309
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16289
Tested-by: build bot (Jenkins)
Reviewed-by: Omar Pakker
Diffstat (limited to 'src/device/oprom/x86emu/ops.c')
-rw-r--r-- | src/device/oprom/x86emu/ops.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |