diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-06-01 13:35:14 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-06-01 13:35:14 +0200 |
| commit | 5cc8395e01a8435378450c5ec474ea306b59ad5f (patch) | |
| tree | 81b71609102baca1d9943045ec721c93d6500968 | |
| parent | e0235fcd5ee2e29d0b6b13cc576ae6fe23ed0b30 (diff) | |
| download | miasm-5cc8395e01a8435378450c5ec474ea306b59ad5f.tar.gz miasm-5cc8395e01a8435378450c5ec474ea306b59ad5f.zip | |
X86: fix tipo
| -rw-r--r-- | miasm2/arch/x86/ctype.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/x86/ctype.py b/miasm2/arch/x86/ctype.py index 0d8cd924..f1f61a96 100644 --- a/miasm2/arch/x86/ctype.py +++ b/miasm2/arch/x86/ctype.py @@ -68,7 +68,7 @@ class CTypeAMD64_unk(CLeafTypes): class CTypeX86_unk(CLeafTypes): - """Define C types sizes/alignement for x86_64 architecture""" + """Define C types sizes/alignement for x86_32 architecture""" obj_char = ObjCDecl("char", 1, 1) obj_short = ObjCDecl("short", 2, 2) |