]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Call (*func), not ALgetparams!
authorGuido van Rossum <guido@python.org>
Fri, 13 Sep 1991 15:31:47 +0000 (15:31 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 13 Sep 1991 15:31:47 +0000 (15:31 +0000)
Modules/almodule.c

index 47aa52aacf57c6aa780d050d22a12a8edc5484b5..fad510d915b61e82442166159200ad6dbb49c96a 100644 (file)
@@ -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++)