summaryrefslogtreecommitdiffstats
path: root/Tools/modulator/Templates
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-03-07 16:16:54 (GMT)
committerGuido van Rossum <guido@python.org>1996-03-07 16:16:54 (GMT)
commita0e2422615c1826fdbe963f4116eb6b3edccb951 (patch)
treeb1b4f848c8fa01c2d157aa90f22f704092eca4ba /Tools/modulator/Templates
parent2429c722d7613336a6a71dc8bd6e07b50024c8aa (diff)
downloadcpython-a0e2422615c1826fdbe963f4116eb6b3edccb951.zip
cpython-a0e2422615c1826fdbe963f4116eb6b3edccb951.tar.gz
cpython-a0e2422615c1826fdbe963f4116eb6b3edccb951.tar.bz2
A few missing casts (Richard Neitzel).
Don't append Unix paths on a Mac (Jack Jansen).
Diffstat (limited to 'Tools/modulator/Templates')
-rw-r--r--Tools/modulator/Templates/module_tail2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/modulator/Templates/module_tail b/Tools/modulator/Templates/module_tail
index 6ee7645..59cc50b 100644
--- a/Tools/modulator/Templates/module_tail
+++ b/Tools/modulator/Templates/module_tail
@@ -3,7 +3,7 @@
static struct PyMethodDef $abbrev$_methods[] = {
$methodlist$
- {NULL, NULL} /* sentinel */
+ {NULL, (PyCFunction)NULL, 0, NULL} /* sentinel */
};