From: Nikodemus Siivola Date: Fri, 25 Nov 2011 15:23:12 +0000 (+0200) Subject: cleanup: pacify GCC with an extra pair of parens X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=f74e03030b757c09e8770af5e8cfb788ff5d4547;p=sbcl.git cleanup: pacify GCC with an extra pair of parens Meh. What a stupid warning. --- diff --git a/src/runtime/coreparse.c b/src/runtime/coreparse.c index 0cc32a9..884a9e1 100644 --- a/src/runtime/coreparse.c +++ b/src/runtime/coreparse.c @@ -511,7 +511,7 @@ load_core_file(char *file, os_vm_offset_t file_offset) * * The low bits of each word are allocation flags. */ - if (word=data[i]) { + if ((word=data[i])) { page_table[offset].region_start_offset = word & ~0x03; page_table[offset].allocated = word & 0x03; }