diff --git a/Objects/typeobject.c b/Objects/typeobject.c index be96de44ab6..0b01bf5677c 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -28,13 +28,14 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Type object implementation */ -static void +static int type_print(v, fp, flags) typeobject *v; FILE *fp; int flags; { fprintf(fp, "", v->tp_name); + return 0; } static object *