From e62c177d6953d63a7af2c00c42301dcf7c0b8a71 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 29 Nov 2015 07:50:02 -0500 Subject: conformance fixes: driver: missing parenthesis. --- src/logic/pe_map_raw_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/logic') 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) -- cgit v1.2.3