From a754c70ceec880038f0e61e413398e96468b34f1 Mon Sep 17 00:00:00 2001 From: Yonghong Zhu Date: Wed, 17 Feb 2016 16:57:44 +0800 Subject: BaseTools/GenFw: Fix a bug for GCC build current GCC build report error: 'for' loop initial declarations are only allowed in C99 or C11 mode, the patch fix this failure. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu Reviewed-by: Liming Gao --- BaseTools/Source/C/GenFw/Elf32Convert.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'BaseTools/Source/C/GenFw/Elf32Convert.c') diff --git a/BaseTools/Source/C/GenFw/Elf32Convert.c b/BaseTools/Source/C/GenFw/Elf32Convert.c index d115291b06..8fca7fba2a 100644 --- a/BaseTools/Source/C/GenFw/Elf32Convert.c +++ b/BaseTools/Source/C/GenFw/Elf32Convert.c @@ -314,7 +314,8 @@ GetSymName ( UINT8* StrtabContents = (UINT8*)mEhdr + StrtabShdr->sh_offset; bool foundEnd = false; - for (UINT32 i = Sym->st_name; (i < StrtabShdr->sh_size) && !foundEnd; i++) { + UINT32 i; + for (i = Sym->st_name; (i < StrtabShdr->sh_size) && !foundEnd; i++) { foundEnd = StrtabContents[i] == 0; } assert(foundEnd); -- cgit v1.2.3