summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriz <nookieman@gmx.de>2011-03-03 22:27:43 +0100
committerchriz <nookieman@gmx.de>2011-03-03 22:27:43 +0100
commit34f2ebfc9f05a765a2ba72c3caf09f597e391d48 (patch)
tree04a1f5645df2d84a9e16391ae670a434f05ddd82
parentd6ff7e595810e7909fe51d2adf6f3530550eb640 (diff)
downloadbionic-34f2ebfc9f05a765a2ba72c3caf09f597e391d48.zip
bionic-34f2ebfc9f05a765a2ba72c3caf09f597e391d48.tar.gz
bionic-34f2ebfc9f05a765a2ba72c3caf09f597e391d48.tar.bz2
removing shadowing redeclaration of result
Change-Id: Ic0c67fc852a66de51b1c2696d878a2a91ed65257
-rw-r--r--libc/bionic/malloc_debug_common.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libc/bionic/malloc_debug_common.c b/libc/bionic/malloc_debug_common.c
index f05576c..a7bd8fc 100644
--- a/libc/bionic/malloc_debug_common.c
+++ b/libc/bionic/malloc_debug_common.c
@@ -84,7 +84,6 @@ static int hash_entry_compare(const void* arg1, const void* arg2)
//
// This is used for sorting, not determination of equality, so we don't
// need to compare the bit flags.
- int result;
if (alloc1 > alloc2) {
result = -1;
} else if (alloc1 < alloc2) {