]> granicus.if.org Git - python/commitdiff
Corrected format string in api_version_warning.
authorSjoerd Mullender <sjoerd@acm.org>
Tue, 23 Jan 1996 16:07:29 +0000 (16:07 +0000)
committerSjoerd Mullender <sjoerd@acm.org>
Tue, 23 Jan 1996 16:07:29 +0000 (16:07 +0000)
Python/modsupport.c

index 63f5267cc38b0a1cbab92af2ac6c6e215e36421f..b1aa1b5cc90673ebf868068b00a2e4e546213fb9 100644 (file)
@@ -44,7 +44,7 @@ typedef double va_double;
 
 static char api_version_warning[] =
 "WARNING: Python C API version mismatch for module %s:\n\
-  This Python has API version %d, module %s has version %s.\n";
+  This Python has API version %d, module %s has version %d.\n";
 
 object *
 initmodule4(name, methods, doc, passthrough, module_api_version)