From 1f8e4cbd5392acdde28e0125aa111ec01a2f6bd2 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Mon, 25 May 2015 22:53:19 +0200 Subject: cbfstool: update fmd_scanner.c_shipped MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We updated the source files, but not the precompiled results. Change-Id: I49634409d01c8d7cf841944e01d36571ae66c0ac Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/10296 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki --- util/cbfstool/fmd_scanner.c_shipped | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'util/cbfstool') diff --git a/util/cbfstool/fmd_scanner.c_shipped b/util/cbfstool/fmd_scanner.c_shipped index 6cc22fb405..4f81c206d2 100644 --- a/util/cbfstool/fmd_scanner.c_shipped +++ b/util/cbfstool/fmd_scanner.c_shipped @@ -496,8 +496,8 @@ char *yytext; #include #include -int parse_integer(char *input, int base); -int copy_string(const char *input); +int parse_integer(char *src, int base); +int copy_string(const char *src); #line 502 "" #define INITIAL 0 @@ -1817,10 +1817,10 @@ void yyfree (void * ptr ) -int parse_integer(char *input, int base) +int parse_integer(char *src, int base) { char *multiplier = NULL; - unsigned val = strtoul(input, &multiplier, base); + unsigned val = strtoul(src, &multiplier, base); if (*multiplier) { switch(*multiplier) { @@ -1844,9 +1844,9 @@ int parse_integer(char *input, int base) return INTEGER; } -int copy_string(const char *input) +int copy_string(const char *src) { - yylval.strval = strdup(input); + yylval.strval = strdup(src); return STRING; } -- cgit v1.2.3