fix: return loaded pool count after sync operation

This commit is contained in:
ngn
2024-07-13 14:11:49 +03:00
parent 0ae3ffd929
commit ba992d395d
2 changed files with 2 additions and 2 deletions

View File

@ -113,5 +113,5 @@ size_t lm_ctx_sync(lm_ctx_t *ctx, bool do_update, lm_ctx_sync_callback_t callbac
cur = cur->next;
}
return true;
return loaded_count;
}