From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id 3617D3865C23; Wed, 26 Oct 2022 15:10:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3617D3865C23 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666797002; bh=jI/ITEnPiT/W0o05ukUTcC4EoXiexA5+eoFlr8rlCAg=; h=From:To:Subject:Date:From; b=f7Lr8wVw8rFo5aAsik9fB2EbYtF2GLdsM6N0mDMvGajA4ViA0DhrsqLTTSEXii9G7 L6f23Wy/3xmqpv08ksVQSAxotZ3CoI+jIH2Hh3YZlLw8UWzmYndWqJ3Z6J9WzRMarj +sRuSdnGznexir1gz+RPxB2hhC0Sq8jLYKvqCY6g= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Szabolcs Nagy To: glibc-cvs@sourceware.org Subject: [glibc/arm/morello/main] scripts: Use bool in tunables initializer X-Act-Checkin: glibc X-Git-Author: Szabolcs Nagy X-Git-Refname: refs/heads/arm/morello/main X-Git-Oldrev: 86cb990eeb22d64be6ab4c7ac3c70b507734dfd7 X-Git-Newrev: 90fc30ae1e84ebae924be6ef5f2b5843a6a0ad57 Message-Id: <20221026151002.3617D3865C23@sourceware.org> Date: Wed, 26 Oct 2022 15:10:02 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=90fc30ae1e84ebae924be6ef5f2b5843a6a0ad57 commit 90fc30ae1e84ebae924be6ef5f2b5843a6a0ad57 Author: Szabolcs Nagy Date: Tue Jun 8 14:03:38 2021 +0100 scripts: Use bool in tunables initializer Diff: --- scripts/gen-tunables.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gen-tunables.awk b/scripts/gen-tunables.awk index fa63e86d1a..d6de100df0 100644 --- a/scripts/gen-tunables.awk +++ b/scripts/gen-tunables.awk @@ -177,7 +177,7 @@ END { n = indices[2]; m = indices[3]; printf (" {TUNABLE_NAME_S(%s, %s, %s)", t, n, m) - printf (", {TUNABLE_TYPE_%s, %s, %s}, {%s}, NULL, TUNABLE_SECLEVEL_%s, %s},\n", + printf (", {TUNABLE_TYPE_%s, %s, %s}, {%s}, false, TUNABLE_SECLEVEL_%s, %s},\n", types[t,n,m], minvals[t,n,m], maxvals[t,n,m], default_val[t,n,m], security_level[t,n,m], env_alias[t,n,m]); }