Adjust int types in format strings (#2009)

* tweak format sting types
This may not be all of them, but it's the ones which warn on OpenBSD

* complete the changes needed to fix the format string specifers

* avoid using inttypes, directly cast to size_t (u64 usually) instead

---------

Co-authored-by: Concedo <39025047+LostRuins@users.noreply.github.com>
This commit is contained in:
JustCommitRandomness
2026-03-06 11:06:18 +00:00
committed by GitHub
parent e36d7b6464
commit 2fbc3b2ae5
13 changed files with 37 additions and 37 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ static bool read_audio(const std::string & b64data, std::vector<float>& pcmf32)
if(whisperdebugmode==1 && !whisper_is_quiet)
{
printf("\nwav_data_size: %d",pcmf32.size());
printf("\nwav_data_size: %zu",pcmf32.size());
}
return true;