From dff7453032eeb84a96d654dab7c77e1984e07dd2 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 19 Dec 2013 02:41:27 +0400 Subject: [PATCH] Remove extra trailing backslash in GC_collect_or_expand (adjust code formatting) * alloc.c (GC_collect_or_expand): Remove unnecessary trailing backslash (in multi-line expression). --- alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alloc.c b/alloc.c index 9db21d10..41b0caba 100644 --- a/alloc.c +++ b/alloc.c @@ -1298,7 +1298,7 @@ GC_INNER GC_bool GC_collect_or_expand(word needed_blocks, } if (!GC_expand_hp_inner(blocks_to_get) - && (blocks_to_get == needed_blocks \ + && (blocks_to_get == needed_blocks || !GC_expand_hp_inner(needed_blocks))) { if (gc_not_stopped == FALSE) { /* Don't increment GC_fail_count here (and no warning). */ -- 2.49.0