From 9e8be53690a465ca208e2869c752a3a6ac9981c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 16 Aug 2004 15:49:53 +0000 Subject: [PATCH] Fixed a GCC 3 warning. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8593 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/core/elf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kernel/core/elf.c b/src/kernel/core/elf.c index 75d15b35f5..15ab90d139 100644 --- a/src/kernel/core/elf.c +++ b/src/kernel/core/elf.c @@ -955,13 +955,13 @@ elf_lookup_symbol_address(addr_t address, addr_t *_baseAddress, const char **_sy symbolName = SYMNAME(image, symbol); if (exactMatch) - goto loop_end; + goto symbol_found; } } } - loop_end: } } +symbol_found: if (symbolFound != NULL) { if (_symbolName)