From e62c177d6953d63a7af2c00c42301dcf7c0b8a71 Mon Sep 17 00:00:00 2001 From: midipix Date: Nov 11 2016 04:35:28 +0000 Subject: conformance fixes: driver: missing parenthesis. --- diff --git a/src/logic/pe_map_raw_image.c b/src/logic/pe_map_raw_image.c index d93e605..98cf584 100644 --- a/src/logic/pe_map_raw_image.c +++ b/src/logic/pe_map_raw_image.c @@ -18,7 +18,7 @@ int pe_map_raw_image( bool fnew; int ret; - if (fnew = (fd < 0)) + if ((fnew = (fd < 0))) fd = open(path,O_RDONLY | O_CLOEXEC); if (fd < 0)