diff options
Diffstat (limited to '')
| -rw-r--r-- | test/analysis/mem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/analysis/mem.py b/test/analysis/mem.py index 9eba8fca..df1df9bc 100644 --- a/test/analysis/mem.py +++ b/test/analysis/mem.py @@ -20,10 +20,10 @@ class OtherStruct(MemStruct): class MyStruct(MemStruct): fields = [ - # Integer field: just struct.pack fields with one value + # Number field: just struct.pack fields with one value ("num", Num("I")), ("flags", Num("B")), - # Ptr fields are Int, but they can also be dereferenced + # Ptr fields are Num, but they can also be dereferenced # (self.deref_<field>). Deref can be read and set. ("other", Ptr("I", OtherStruct)), # Ptr to a variable length String |