diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2021-06-08 14:03:38 +0100 |
---|---|---|
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2022-08-05 15:28:42 +0100 |
commit | 9f22387b9587530c264a925e96b6a88c79fdc25f (patch) | |
tree | a4e3f7c0ca3cc411889a261b0e54080146444644 | |
parent | c74bb93cfdb04d49155b0e30983a3c866167bbca (diff) | |
download | glibc-9f22387b9587530c264a925e96b6a88c79fdc25f.tar.gz glibc-9f22387b9587530c264a925e96b6a88c79fdc25f.tar.xz glibc-9f22387b9587530c264a925e96b6a88c79fdc25f.zip |
scripts: Use bool in tunables initializer
-rw-r--r-- | scripts/gen-tunables.awk | 2 |
1 files changed, 1 insertions, 1 deletions
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]); } |