all: yet more minor updates

This commit is contained in:
Markus F.X.J. Oberhumer
2023-06-09 14:12:05 +02:00
parent db39f9c4dc
commit 19e84fea62
37 changed files with 192 additions and 164 deletions
+2 -2
View File
@@ -211,10 +211,10 @@ void infoWarning(const char *format, ...) {
info("[WARNING] %s\n", buf);
}
void infoWriting(const char *what, long size) {
void infoWriting(const char *what, upx_int64_t size) {
if (opt->info_mode <= 0)
return;
info("Writing %s: %ld bytes", what, size);
info("Writing %s: %lld bytes", what, size);
}
/* vim:set ts=4 sw=4 et: */