--- embedtools/src/Attic/clog.c 2010/09/30 11:39:08 1.1.2.8 +++ embedtools/src/Attic/clog.c 2011/06/08 09:33:29 1.1.2.9 @@ -91,7 +91,7 @@ readlog(const char *csLog, char m) return -1; } else lseek(f, 0, SEEK_SET); - VERB(2) printf("Verbose(2):: Get file size %u\n", end); + VERB(2) printf("Verbose(2):: Get file size %lu\n", end); buffer = mmap(NULL, end, PROT_READ, MAP_SHARED, f, 0); if (!buffer) { printf("Error:: in map %s #%d - %s\n", csLog, errno, strerror(errno)); @@ -161,7 +161,7 @@ main(int argc, char **argv) case 's': siz = strtol(optarg, NULL, 0); if (siz < 1) { - printf("Error:: size is invalid %u!\n", siz); + printf("Error:: size is invalid %lu!\n", siz); Usage(); return 1; }