Silence more warnings.
This commit is contained in:
parent
d47aa91c6a
commit
250f214507
@ -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);
|
||||
|
@ -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';
|
||||
|
@ -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);
|
||||
|
@ -466,7 +466,7 @@ distSetCustom(dialogMenuItem *self)
|
||||
|
||||
cp = alloca(strlen(tmp) + 1);
|
||||
if (!cp)
|
||||
msgFatal("Couldn't alloca() %d bytes!\n", strlen(tmp) + 1);
|
||||
msgFatal("Couldn't alloca() %d bytes!\n", (int)(strlen(tmp) + 1));
|
||||
strcpy(cp, tmp);
|
||||
while (cp) {
|
||||
if ((cp2 = index(cp, ' ')) != NULL)
|
||||
@ -492,7 +492,7 @@ distUnsetCustom(dialogMenuItem *self)
|
||||
|
||||
cp = alloca(strlen(tmp) + 1);
|
||||
if (!cp)
|
||||
msgFatal("Couldn't alloca() %d bytes!\n", strlen(tmp) + 1);
|
||||
msgFatal("Couldn't alloca() %d bytes!\n", (int)(strlen(tmp) + 1));
|
||||
strcpy(cp, tmp);
|
||||
while (cp) {
|
||||
if ((cp2 = index(cp, ' ')) != NULL)
|
||||
|
@ -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';
|
||||
|
@ -44,7 +44,8 @@
|
||||
void
|
||||
configTtys(void)
|
||||
{
|
||||
int len, t, tlen, changed;
|
||||
size_t len;
|
||||
int t, tlen, changed;
|
||||
FILE *fp, *np;
|
||||
char sq, *line, *p, *q, *cp, *tptr;
|
||||
char templ[sizeof(_PATH_TTYS) + sizeof(_X_EXTENSION) - 1];
|
||||
|
Loading…
Reference in New Issue
Block a user