]> granicus.if.org Git - python/commitdiff
Fix bad format char in error msg (%s should be %d).
authorGuido van Rossum <guido@python.org>
Thu, 5 Dec 1996 23:30:16 +0000 (23:30 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 5 Dec 1996 23:30:16 +0000 (23:30 +0000)
Keep gcc -Wall happy.

Modules/bsddbmodule.c

index c4155acb3987d901e5c739c559dc1ea836c635b8..01b11160d50a2539ee47fa2db60225f5cec0c9c7 100644 (file)
@@ -193,7 +193,7 @@ bsddb_dealloc(dp)
     if (dp->di_bsddb != NULL) {
        if ((dp->di_bsddb->close)(dp->di_bsddb) != 0)
            fprintf(stderr,
-                   "Python bsddb: close errno %s in dealloc\n", errno);
+                   "Python bsddb: close errno %d in dealloc\n", errno);
     }
     PyMem_DEL(dp);
 }
@@ -225,7 +225,6 @@ bsddb_subscript(dp, key)
     PyObject *key;
 {
     int status;
-    PyObject *v;
     DBT krec, drec;
     char *data;
     int size;
@@ -381,7 +380,6 @@ bsddb_set_location(dp, key)
     PyObject *key;
 {
     int status;
-    PyObject *v;
     DBT krec, drec;
     char *data;
     int size;