Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.

Commit 7cdafd4

Browse files
committed
Fix names
1 parent 5ab99e3 commit 7cdafd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vxi11/vxi11.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def unpack_device_lock_parms(self):
303303
lock_timeout = self.unpack_uint()
304304
return link, flags, lock_timeout
305305

306-
def pack_device_docmd_parms(self):
306+
def unpack_device_docmd_parms(self):
307307
link = self.unpack_int()
308308
flags = self.unpack_int()
309309
timeout = self.unpack_uint()
@@ -439,7 +439,7 @@ def destroy_link(self, link):
439439
def create_intr_chan(self, host_addr, host_port, prog_num, prog_vers, prog_family):
440440
params = (host_addr, host_port, prog_num, prog_vers, prog_family)
441441
return self.make_call(CREATE_INTR_CHAN, params,
442-
self.packer.pack_device_docmd_parms,
442+
self.packer.pack_device_remote_func_parms,
443443
self.unpacker.unpack_device_error)
444444

445445
def destroy_intr_chan(self):

0 commit comments

Comments
 (0)