1.0.5.25:
authorThiemo Seufer <ths@networkno.de>
Wed, 2 May 2007 17:46:03 +0000 (17:46 +0000)
committerThiemo Seufer <ths@networkno.de>
Wed, 2 May 2007 17:46:03 +0000 (17:46 +0000)
Fix argument signedness format.

src/runtime/save.c
version.lisp-expr

index 1518e61..837a231 100644 (file)
@@ -170,7 +170,7 @@ output_space(FILE *file, int id, lispobj *addr, lispobj *end, os_vm_offset_t fil
     scan_for_lutexes((char *)addr, words);
 #endif
 
-    printf("writing %ld bytes from the %s space at 0x%08lx\n",
+    printf("writing %lu bytes from the %s space at 0x%08lx\n",
            bytes, names[id], (unsigned long)addr);
 
     data = write_bytes(file, (char *)addr, bytes, file_offset);
index a3c5aaf..5cb7470 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.5.24"
+"1.0.5.25"