about summary refs log tree commit diff stats
path: root/miasm/loader/pe.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2024-03-28 15:31:07 +0100
committerGitHub <noreply@github.com>2024-03-28 15:31:07 +0100
commit1ba37c39b1fa70651a1c7748c5829656cd3e6dea (patch)
treee74b76e29d6618228b67112543943215f0eb011d /miasm/loader/pe.py
parent319229f8675fb3d84655b1701a31eb9064560d3c (diff)
parent46a201ecd64b478fc947d8b1b2e830b767bb66eb (diff)
downloadfocaccia-miasm-1ba37c39b1fa70651a1c7748c5829656cd3e6dea.tar.gz
focaccia-miasm-1ba37c39b1fa70651a1c7748c5829656cd3e6dea.zip
Merge pull request #1474 from DimitriPapadopoulos/codespell
Fix typos found by codespell
Diffstat (limited to 'miasm/loader/pe.py')
-rw-r--r--miasm/loader/pe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/loader/pe.py b/miasm/loader/pe.py
index ea7cbc52..1252e70e 100644
--- a/miasm/loader/pe.py
+++ b/miasm/loader/pe.py
@@ -1110,7 +1110,7 @@ class DirDelay(CStruct):
                         if isfromva(tmp_thunk[j].rva & 0x7FFFFFFF) == func:
                             return isfromva(entry.firstthunk) + j * 4
             else:
-                raise ValueError('unknown func tpye %r' % func)
+                raise ValueError('unknown func type %r' % func)
 
     def get_funcvirt(self, addr):
         rva = self.get_funcrva(addr)