From fc987674dd92a50687d970b02e072fff19391175 Mon Sep 17 00:00:00 2001 From: Pali Rohár Date: Sat, 23 Jan 2016 16:07:02 +0100 Subject: all: Code style fixes --- src/cold-flash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cold-flash.c') diff --git a/src/cold-flash.c b/src/cold-flash.c index 4f01457..89b055a 100644 --- a/src/cold-flash.c +++ b/src/cold-flash.c @@ -49,7 +49,7 @@ static void crc32_gentab(void) { for ( j = 8; j > 0; j-- ) { - if (crc & 1) + if ( crc & 1 ) crc = (crc >> 1) ^ poly; else crc >>= 1; @@ -316,7 +316,7 @@ static int ping_timeout(libusb_device_handle * udev) { } - if (pong) + if ( pong ) return 0; else return -1; -- cgit v1.2.3