From: Daniel Bevenius Date: Wed, 16 Oct 2024 17:24:05 +0000 (+0200) Subject: llava : fix typo in error message [no ci] (#9884) X-Git-Tag: upstream/0.0.4488~558 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=dbf18e4de9e7aa496871f1555f9f0c8d84567108;p=pkg%2Fggml%2Fsources%2Fllama.cpp llava : fix typo in error message [no ci] (#9884) --- diff --git a/examples/llava/llava.cpp b/examples/llava/llava.cpp index 8558c6bd..2c96973c 100644 --- a/examples/llava/llava.cpp +++ b/examples/llava/llava.cpp @@ -432,7 +432,7 @@ struct llava_image_embed * llava_image_embed_make_with_bytes(struct clip_ctx * c bool image_embed_result = llava_image_embed_make_with_clip_img(ctx_clip, n_threads, img, &image_embed, &n_image_pos); if (!image_embed_result) { clip_image_u8_free(img); - LOG_ERR("%s: coulnd't embed the image\n", __func__); + LOG_ERR("%s: couldn't embed the image\n", __func__); return NULL; }