missed an '=' in MatglossPair definition

develop
doomchild 2010-05-07 09:12:39 -05:00
parent 1ea6a960d9
commit 5e92526040
1 changed files with 2 additions and 2 deletions

@ -91,7 +91,7 @@ class Matgloss(Structure):
("name", c_char * 128)] ("name", c_char * 128)]
class MatglossPair(Structure): class MatglossPair(Structure):
_fields_ [("type", c_short), _fields_ = [("type", c_short),
("index", c_int)] ("index", c_int)]
class Descriptor_Color(Structure): class Descriptor_Color(Structure):