summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/methodobject.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index 98b70a6..f6777ea 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -99,11 +99,12 @@ meth_dealloc(m)
free((char *)m);
}
+/* ARGSUSED */
static int
meth_print(m, fp, flags)
methodobject *m;
FILE *fp;
- int flags;
+ int flags; /* Not used but required by interface */
{
if (m->m_self == NULL)
fprintf(fp, "<built-in function '%s'>", m->m_name);