minor : warning fixes

This commit is contained in:
Georgi Gerganov 2023-06-17 20:24:11 +03:00
parent 2c9380dd2f
commit 4f9c43e3bd
No known key found for this signature in database
GPG key ID: 449E073F9DC10735
2 changed files with 17 additions and 12 deletions

View file

@ -354,7 +354,7 @@ int main(int argc, char ** argv) {
if ((int)embd.size() > max_embd_size) {
auto skipped_tokens = embd.size() - max_embd_size;
console_set_color(con_st, CONSOLE_COLOR_ERROR);
printf("<<input too long: skipped %" PRIu64 " token%s>>", skipped_tokens, skipped_tokens != 1 ? "s" : "");
printf("<<input too long: skipped %zu token%s>>", skipped_tokens, skipped_tokens != 1 ? "s" : "");
console_set_color(con_st, CONSOLE_COLOR_DEFAULT);
fflush(stdout);
embd.resize(max_embd_size);