From b29a25d09c9c7afe0b22eaa795b3dda6bb2641f7 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Thu, 29 Sep 2011 11:05:06 +0200 Subject: [PATCH] Silence a warning about assignment in conditional --- 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 bc562ba..85f2aa9 100644 --- a/src/runtime/coreparse.c +++ b/src/runtime/coreparse.c @@ -100,7 +100,7 @@ maybe_initialize_runtime_options(int fd) lseek(fd, -end_offset, SEEK_END); - if (new_runtime_options = read_runtime_options(fd)) { + if ((new_runtime_options = read_runtime_options(fd))) { runtime_options = new_runtime_options; } } -- 1.7.10.4