replace fmt::print() with utils::print()

This commit is contained in:
Axel Kohlmeyer
2025-01-23 00:11:31 -05:00
parent 8baec60155
commit e4dbfee498
69 changed files with 397 additions and 397 deletions

View File

@ -103,7 +103,7 @@ void Error::universe_warn(const std::string &file, int line, const std::string &
++numwarn;
if ((maxwarn != 0) && ((numwarn > maxwarn) || (allwarn > maxwarn) || (maxwarn < 0))) return;
if (universe->uscreen)
fmt::print(universe->uscreen,"WARNING on proc {}: {} ({}:{})\n",
utils::print(universe->uscreen,"WARNING on proc {}: {} ({}:{})\n",
universe->me,str,truncpath(file),line);
}