From: Guido van Rossum Date: Fri, 27 Mar 1992 17:26:44 +0000 (+0000) Subject: Lint X-Git-Tag: v0.9.8~441 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eec181ae887470b707bf8c06c9ff8c980f7b3ce9;p=thirdparty%2FPython%2Fcpython.git Lint ./ --- diff --git a/Objects/methodobject.c b/Objects/methodobject.c index 98b70a6d8d26..f6777ea164d9 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, "", m->m_name);