summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade
diff options
context:
space:
mode:
authormurray <murray@FreeBSD.org>2001-09-22 23:17:37 +0000
committermurray <murray@FreeBSD.org>2001-09-22 23:17:37 +0000
commita3fa7d9b17ea4172917c08cb7788e478ac45a5f8 (patch)
treed0e2ff4d919270404ceb8069d20bbe4eef969ad6 /usr.sbin/sade
parent8cda2ec97f6a72f452fa861c3adb93522ab009ec (diff)
downloadFreeBSD-src-a3fa7d9b17ea4172917c08cb7788e478ac45a5f8.zip
FreeBSD-src-a3fa7d9b17ea4172917c08cb7788e478ac45a5f8.tar.gz
Silence more warnings.
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r--usr.sbin/sade/disks.c4
-rw-r--r--usr.sbin/sade/install.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sade/disks.c b/usr.sbin/sade/disks.c
index 3886e0e..8659962 100644
--- a/usr.sbin/sade/disks.c
+++ b/usr.sbin/sade/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);
diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c
index 9937b27..4f4c223 100644
--- a/usr.sbin/sade/install.c
+++ b/usr.sbin/sade/install.c
@@ -1035,7 +1035,7 @@ static char *
getRelname(void)
{
static char buf[64];
- int sz = (sizeof buf) - 1;
+ size_t sz = (sizeof buf) - 1;
if (sysctlbyname("kern.osrelease", buf, &sz, NULL, 0) != -1) {
buf[sz] = '\0';
OpenPOWER on IntegriCloud