From: kramm Date: Fri, 15 Oct 2004 08:17:50 +0000 (+0000) Subject: removed [] characters from test program- m4 would discard them otherwise. X-Git-Tag: release-0-6-3~313 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=b6575ae3d3fe12fdefe00dcbd0086d09923d2c69 removed [] characters from test program- m4 would discard them otherwise. --- diff --git a/m4/python.m4 b/m4/python.m4 index 9f958ad..7131543 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -37,10 +37,10 @@ if test "x$PY_VERSION" "!=" "x"; then #include #include -int main(int argn, char*argv[]) +int main() { int ret; - ret = Py_Main(argn, argv); + ret = Py_Main(0, 0); int x; // check also for gcc 2.95.x incompatibilities return ret; }