Skip to content

Commit afb54bf

Browse files
committed
Fixed misnamed parameters in AvsIdentityType
1 parent 56a8300 commit afb54bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

avaspec.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
class AvsIdentityType(ctypes.Structure):
1616
_pack_ = 1
17-
_fields_ = [("SerialNumber", ctypes.c_char * AVS_SERIAL_LEN),
18-
("UserFriendlyName", ctypes.c_char * USER_ID_LEN),
19-
("Status", ctypes.c_char)]
17+
_fields_ = [("m_aSerialId", ctypes.c_char * AVS_SERIAL_LEN),
18+
("m_aUserFriendlyId", ctypes.c_char * USER_ID_LEN),
19+
("m_Status", ctypes.c_char)]
2020

2121
class MeasConfigType(ctypes.Structure):
2222
_pack_ = 1

0 commit comments

Comments
 (0)