From a347dbfab622ab98d9747d862ade9e6b6fd9425c Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 17 Dec 2019 00:23:09 +1100 Subject: [PATCH] Fix simple typo: wether -> whether (#259) Closes #258 --- scripts/readelf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/readelf.py b/scripts/readelf.py index dfcd98d..a7b5ab9 100755 --- a/scripts/readelf.py +++ b/scripts/readelf.py @@ -875,7 +875,7 @@ class ReadElf(object): if self._versioninfo['type'] == 'GNU': # In GNU versioning mode, the highest bit is used to - # store wether the symbol is hidden or not + # store whether the symbol is hidden or not if index & 0x8000: index &= ~0x8000 symbol_version['hidden'] = True -- 2.30.2