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/install.c | |
parent | 8cda2ec97f6a72f452fa861c3adb93522ab009ec (diff) | |
download | FreeBSD-src-a3fa7d9b17ea4172917c08cb7788e478ac45a5f8.zip FreeBSD-src-a3fa7d9b17ea4172917c08cb7788e478ac45a5f8.tar.gz |
Silence more warnings.
Diffstat (limited to 'usr.sbin/sysinstall/install.c')
-rw-r--r-- | usr.sbin/sysinstall/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 9937b27..4f4c223 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/sysinstall/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'; |