Blame SOURCES/0199-tools-drop-unused-variable.patch

a3e2b5
From b7786387a6cdc447b874f36a8d9831b1acd2eb13 Mon Sep 17 00:00:00 2001
a3e2b5
From: Yu Watanabe <watanabe.yu+github@gmail.com>
a3e2b5
Date: Sat, 8 Dec 2018 19:33:37 +0900
a3e2b5
Subject: [PATCH] tools: drop unused variable
a3e2b5
a3e2b5
(cherry picked from commit 2f6c9b6f3fb0128cee7f74985c143b4850feff6d)
a3e2b5
a3e2b5
Resolves: #1705971
a3e2b5
---
a3e2b5
 tools/gdb-sd_dump_hashmaps.py | 1 -
a3e2b5
 1 file changed, 1 deletion(-)
a3e2b5
a3e2b5
diff --git a/tools/gdb-sd_dump_hashmaps.py b/tools/gdb-sd_dump_hashmaps.py
a3e2b5
index ea15160107..0701d139e2 100644
a3e2b5
--- a/tools/gdb-sd_dump_hashmaps.py
a3e2b5
+++ b/tools/gdb-sd_dump_hashmaps.py
a3e2b5
@@ -16,7 +16,6 @@ class sd_dump_hashmaps(gdb.Command):
a3e2b5
                 d = gdb.parse_and_eval("hashmap_debug_list")
a3e2b5
                 all_entry_sizes = gdb.parse_and_eval("all_entry_sizes")
a3e2b5
                 all_direct_buckets = gdb.parse_and_eval("all_direct_buckets")
a3e2b5
-                hashmap_base_t = gdb.lookup_type("HashmapBase")
a3e2b5
                 uchar_t = gdb.lookup_type("unsigned char")
a3e2b5
                 ulong_t = gdb.lookup_type("unsigned long")
a3e2b5
                 debug_offset = gdb.parse_and_eval("(unsigned long)&((HashmapBase*)0)->debug")