From f74e03030b757c09e8770af5e8cfb788ff5d4547 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Fri, 25 Nov 2011 17:23:12 +0200 Subject: [PATCH] cleanup: pacify GCC with an extra pair of parens Meh. What a stupid warning. --- src/runtime/coreparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 1.7.10.4