summaryrefslogtreecommitdiffstats
path: root/Modules/almodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-09-13 15:31:47 (GMT)
committerGuido van Rossum <guido@python.org>1991-09-13 15:31:47 (GMT)
commit8db030739989c639eb0ecfc8706b2e24380be388 (patch)
tree086e5c6df99e35004ac0643c74b833b309fd4bd9 /Modules/almodule.c
parent54ba21bd76499af9271f075bba66e0e06a3de323 (diff)
downloadcpython-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.c2
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++)