--- sdbm-old.c  2003-07-08 19:55:04.000000000 -0300
+++ sdbm.c      2003-07-08 19:57:52.000000000 -0300
@@ -495,7 +495,7 @@
     while (dbit < db->maxbno && getdbit(db, dbit))
     dbit = 2 * dbit + ((hash & (1 << hbit++)) ? 2 : 1);
 
-    debug(("dbit: %d...", dbit));
+    debug(("dbit: %lu...", dbit));
 
     db->curbit = dbit;
     db->hmask = masks[hbit];
@@ -520,7 +520,7 @@
             return APR_ENOSPC; /* ### better error? */
         db->pagbno = pagb;
 
-        debug(("pag read: %d\n", pagb));
+        debug(("pag read: %lu\n", pagb));
     }
     return APR_SUCCESS;
 }
@@ -540,7 +540,7 @@
 
         db->dirbno = dirb;
 
-        debug(("dir read: %d\n", dirb));
+        debug(("dir read: %lu\n", dirb));
     }
 
     return db->dirbuf[c % DBLKSIZ] & (1 << dbit % BYTESIZ);
@@ -563,7 +563,7 @@
 
         db->dirbno = dirb;
         
-        debug(("dir read: %d\n", dirb));
+        debug(("dir read: %lu\n", dirb));
     }
 
     db->dirbuf[c % DBLKSIZ] |= (1 << dbit % BYTESIZ);

Reply via email to