Codechange: Format unsigned integers with %u instead of %i or %d.

This commit is contained in:
Quipyowert2 2020-02-12 21:04:53 -08:00 committed by Michael Lutz
parent 2196cd3cf8
commit acb3d10832
4 changed files with 8 additions and 8 deletions

View File

@ -697,7 +697,7 @@ public:
if (f == nullptr) return false; if (f == nullptr) return false;
ScenarioIdentifier id; ScenarioIdentifier id;
int fret = fscanf(f, "%i", &id.scenid); int fret = fscanf(f, "%u", &id.scenid);
FioFCloseFile(f); FioFCloseFile(f);
if (fret != 1) return false; if (fret != 1) return false;
strecpy(id.filename, filename, lastof(id.filename)); strecpy(id.filename, filename, lastof(id.filename));

View File

@ -109,7 +109,7 @@ uint32 NewGRFProfiler::Finish()
fputs("Tick,Sprite,Feature,Item,CallbackID,Microseconds,Depth,Result\n", f); fputs("Tick,Sprite,Feature,Item,CallbackID,Microseconds,Depth,Result\n", f);
for (const Call &c : this->calls) { for (const Call &c : this->calls) {
fprintf(f, "%u,%u,0x%X,%d,0x%X,%u,%u,%u\n", c.tick, c.root_sprite, c.feat, c.item, (uint)c.cb, c.time, c.subs, c.result); fprintf(f, "%u,%u,0x%X,%u,0x%X,%u,%u,%u\n", c.tick, c.root_sprite, c.feat, c.item, (uint)c.cb, c.time, c.subs, c.result);
total_microseconds += c.time; total_microseconds += c.time;
} }

View File

@ -305,16 +305,16 @@ void Hash::PrintStatistics() const
} }
printf( printf(
"---\n" "---\n"
"Hash size: %d\n" "Hash size: %u\n"
"Nodes used: %d\n" "Nodes used: %u\n"
"Non empty buckets: %d\n" "Non empty buckets: %u\n"
"Max collision: %d\n", "Max collision: %u\n",
this->num_buckets, this->size, used_buckets, max_collision this->num_buckets, this->size, used_buckets, max_collision
); );
printf("{ "); printf("{ ");
for (i = 0; i <= max_collision; i++) { for (i = 0; i <= max_collision; i++) {
if (usage[i] > 0) { if (usage[i] > 0) {
printf("%d:%d ", i, usage[i]); printf("%u:%u ", i, usage[i]);
#if 0 #if 0
if (i > 0) { if (i > 0) {
uint j; uint j;

View File

@ -310,7 +310,7 @@ struct HeaderFileWriter : HeaderWriter, FileWriter {
fprintf(this->fh, fprintf(this->fh,
"\n" "\n"
"static const uint LANGUAGE_PACK_VERSION = 0x%X;\n" "static const uint LANGUAGE_PACK_VERSION = 0x%X;\n"
"static const uint LANGUAGE_MAX_PLURAL = %d;\n" "static const uint LANGUAGE_MAX_PLURAL = %u;\n"
"static const uint LANGUAGE_MAX_PLURAL_FORMS = %d;\n\n", "static const uint LANGUAGE_MAX_PLURAL_FORMS = %d;\n\n",
(uint)data.Version(), (uint)lengthof(_plural_forms), max_plural_forms (uint)data.Version(), (uint)lengthof(_plural_forms), max_plural_forms
); );