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/decode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/device/oprom/x86emu/decode.c') diff --git a/src/device/oprom/x86emu/decode.c b/src/device/oprom/x86emu/decode.c index d59583c53f..b7a6f35b51 100644 --- a/src/device/oprom/x86emu/decode.c +++ b/src/device/oprom/x86emu/decode.c @@ -1138,9 +1138,9 @@ Return the offset given by "mod" addressing. unsigned decode_rmXX_address(int mod, int rm) { - if(mod == 0) + if (mod == 0) return decode_rm00_address(rm); - if(mod == 1) + if (mod == 1) return decode_rm01_address(rm); return decode_rm10_address(rm); } -- cgit v1.2.3