diff options
author | Guido van Rossum <guido@python.org> | 1991-09-13 15:31:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-09-13 15:31:47 (GMT) |
commit | 8db030739989c639eb0ecfc8706b2e24380be388 (patch) | |
tree | 086e5c6df99e35004ac0643c74b833b309fd4bd9 /Modules/almodule.c | |
parent | 54ba21bd76499af9271f075bba66e0e06a3de323 (diff) | |
download | cpython-8db030739989c639eb0ecfc8706b2e24380be388.zip cpython-8db030739989c639eb0ecfc8706b2e24380be388.tar.gz cpython-8db030739989c639eb0ecfc8706b2e24380be388.tar.bz2 |
Call (*func), not ALgetparams!
Diffstat (limited to 'Modules/almodule.c')
-rw-r--r-- | Modules/almodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/almodule.c b/Modules/almodule.c index 47aa52a..fad510d 100644 --- a/Modules/almodule.c +++ b/Modules/almodule.c @@ -516,7 +516,7 @@ doParams(args, func, modified) PVbuffer[i] = getintvalue(v); } - ALgetparams(device, PVbuffer, length); + (*func)(device, PVbuffer, length); if (modified) { for (i = 0; i < length; i++) |