Fix warnings (#1864)

This commit is contained in:
Ruben Garcia
2025-11-29 13:18:38 +01:00
committed by GitHub
parent 9999b8950d
commit 06d39dff73
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -5264,7 +5264,7 @@ bool clip_model_quantize(const char * fname_inp, const char * fname_out, const i
const int64_t blck_size = ggml_blck_size(type);
if(d==0 && cur->ne[d] % blck_size != 0)
{
printf("\nSkipping %s because %d is not divisible by %d\n",name.c_str(),cur->ne[d],blck_size);
printf("\nSkipping %s because %" PRId64 " is not divisible by %ld\n",name.c_str(),cur->ne[d],blck_size);
quantize = false;
break;
}