diff options
author | murray <murray@FreeBSD.org> | 2001-09-22 23:17:37 +0000 |
---|---|---|
committer | murray <murray@FreeBSD.org> | 2001-09-22 23:17:37 +0000 |
commit | a3fa7d9b17ea4172917c08cb7788e478ac45a5f8 (patch) | |
tree | d0e2ff4d919270404ceb8069d20bbe4eef969ad6 /usr.sbin/sysinstall/disks.c | |
parent | 8cda2ec97f6a72f452fa861c3adb93522ab009ec (diff) | |
download | FreeBSD-src-a3fa7d9b17ea4172917c08cb7788e478ac45a5f8.zip FreeBSD-src-a3fa7d9b17ea4172917c08cb7788e478ac45a5f8.tar.gz |
Silence more warnings.
Diffstat (limited to 'usr.sbin/sysinstall/disks.c')
-rw-r--r-- | usr.sbin/sysinstall/disks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/disks.c b/usr.sbin/sysinstall/disks.c index 3886e0e..8659962 100644 --- a/usr.sbin/sysinstall/disks.c +++ b/usr.sbin/sysinstall/disks.c @@ -98,7 +98,7 @@ print_chunks(Disk *d, int u) #ifndef PC98 if (d->bios_cyl > 65536 || d->bios_hd > 256 || d->bios_sect >= 64) { dialog_clear_norefresh(); - msgConfirm("WARNING: A geometry of %d/%d/%d for %s is incorrect. Using\n" + msgConfirm("WARNING: A geometry of %lu/%lu/%lu for %s is incorrect. Using\n" "a more likely geometry. If this geometry is incorrect or you\n" "are unsure as to whether or not it's correct, please consult\n" "the Hardware Guide in the Documentation submenu or use the\n" @@ -688,7 +688,7 @@ bootalloc(char *name) if (read(fd, cp, sb.st_size) != sb.st_size) { free(cp); close(fd); - msgDebug("bootalloc: couldn't read %d bytes from %s\n", sb.st_size, buf); + msgDebug("bootalloc: couldn't read %ld bytes from %s\n", (long)sb.st_size, buf); return NULL; } close(fd); |