From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1921) id 0D6313894C2C; Mon, 26 Oct 2020 13:32:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0D6313894C2C Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sebastian Huber To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] Fixup r361997 by balancing parens. Duh. X-Act-Checkin: newlib-cygwin X-Git-Author: dougm X-Git-Refname: refs/heads/master X-Git-Oldrev: e83aad1851e8fa453c53e1663141f48014ea4a7c X-Git-Newrev: 87b42171dc562b860f0fedd28bc9859adca0dbd4 Message-Id: <20201026133228.0D6313894C2C@sourceware.org> Date: Mon, 26 Oct 2020 13:32:28 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2020 13:32:28 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=87b42171dc562b860f0fedd28bc9859adca0dbd4 commit 87b42171dc562b860f0fedd28bc9859adca0dbd4 Author: dougm Date: Wed Jun 10 03:36:17 2020 +0000 Fixup r361997 by balancing parens. Duh. Diff: --- newlib/libc/include/sys/tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/include/sys/tree.h b/newlib/libc/include/sys/tree.h index 7c2053981..33efb9e11 100644 --- a/newlib/libc/include/sys/tree.h +++ b/newlib/libc/include/sys/tree.h @@ -337,7 +337,7 @@ struct { \ #define RB_COLOR(elm, field) (RB_PARENT(elm, field) == NULL ? RB_FALSE : \ RB_LEFT(RB_PARENT(elm, field), field) == elm ? \ RB_RED_LF(RB_PARENT(elm, field), field) : \ - RB_RED_RT(RB_PARENT(elm, field), field) + RB_RED_RT(RB_PARENT(elm, field), field)) /* * Something to be invoked in a loop at the root of every modified subtree,