tweaks: avoid compilation warnings on 32-bit machine plus newer compiler
parent
ba124ffa5d
commit
f602613a9a
|
@ -2088,7 +2088,7 @@ void minibar(void)
|
||||||
} else
|
} else
|
||||||
thename = copy_of(_("(nameless)"));
|
thename = copy_of(_("(nameless)"));
|
||||||
|
|
||||||
sprintf(location, "%zi,%lu", openfile->current->lineno, xplustabs() + 1);
|
sprintf(location, "%zi,%zi", openfile->current->lineno, xplustabs() + 1);
|
||||||
placewidth = strlen(location);
|
placewidth = strlen(location);
|
||||||
namewidth = breadth(thename);
|
namewidth = breadth(thename);
|
||||||
|
|
||||||
|
@ -2146,7 +2146,7 @@ void minibar(void)
|
||||||
else if ((unsigned char)*this_position < 0x80 && using_utf8())
|
else if ((unsigned char)*this_position < 0x80 && using_utf8())
|
||||||
sprintf(hexadecimal, "U+%04X", (unsigned char)*this_position);
|
sprintf(hexadecimal, "U+%04X", (unsigned char)*this_position);
|
||||||
else if (using_utf8() && mbtowc(&widecode, this_position, MAXCHARLEN) >= 0)
|
else if (using_utf8() && mbtowc(&widecode, this_position, MAXCHARLEN) >= 0)
|
||||||
sprintf(hexadecimal, "U+%04X", widecode);
|
sprintf(hexadecimal, "U+%04X", (int)widecode);
|
||||||
#endif
|
#endif
|
||||||
else
|
else
|
||||||
sprintf(hexadecimal, " 0x%02X", (unsigned char)*this_position);
|
sprintf(hexadecimal, " 0x%02X", (unsigned char)*this_position);
|
||||||
|
@ -2162,7 +2162,7 @@ void minibar(void)
|
||||||
|
|
||||||
/* Display how many percent the current line is into the file. */
|
/* Display how many percent the current line is into the file. */
|
||||||
if (namewidth + 6 < COLS) {
|
if (namewidth + 6 < COLS) {
|
||||||
sprintf(location, "%3li%%", 100 * openfile->current->lineno / openfile->filebot->lineno);
|
sprintf(location, "%3zi%%", 100 * openfile->current->lineno / openfile->filebot->lineno);
|
||||||
mvwaddstr(bottomwin, 0, COLS - 4 - padding, location);
|
mvwaddstr(bottomwin, 0, COLS - 4 - padding, location);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue