From b217c15fc340bc29e7cab0a80626c65e48fcebd6 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 2 Jan 2015 11:16:35 +0530 Subject: [PATCH] Remove uses of sprintf in gen-posix-conf-vars.awk Simply some code by replacing sprintf in the awk script. --- ChangeLog | 4 ++++ scripts/gen-posix-conf-vars.awk | 7 ++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index fc7a34e350..cf3318503a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-01-02 Siddhesh Poyarekar + + * scripts/gen-posix-conf-vars.awk (END): Don't use sprintf. + 2014-12-31 Joseph Myers [BZ #17748] diff --git a/scripts/gen-posix-conf-vars.awk b/scripts/gen-posix-conf-vars.awk index 220d0e89b9..9a4c54256a 100644 --- a/scripts/gen-posix-conf-vars.awk +++ b/scripts/gen-posix-conf-vars.awk @@ -68,11 +68,8 @@ END { # Build a name -> sysconf number associative array to print a C array at # the end. - if (prefix_conf[c] == "SPEC") { - name = sprintf ("%s", c) - num = sprintf ("%s_%s", sc_prefixes[c], conf[c]) - spec[name] = num - } + if (prefix_conf[c] == "SPEC") + spec[c] = sc_prefixes[c] "_" conf[c] } # Print the specification array. Define the macro NEED_SPEC_ARRAY before