From 34a7665ee7eb2515acdb8fdf929b586b552158ed Mon Sep 17 00:00:00 2001 From: Pierrick Hymbert Date: Sat, 23 Mar 2024 17:51:21 +0100 Subject: [PATCH] spacing Co-authored-by: Georgi Gerganov --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 3afe2e05a..a1850b44b 100644 --- a/llama.cpp +++ b/llama.cpp @@ -14839,7 +14839,7 @@ int llama_split_prefix(char * dest, size_t maxlen, const char * split_path, int std::string str_postfix(postfix); // check if dest ends with postfix - int size_prefix = str_split_path.size() - str_postfix.size() ; + int size_prefix = str_split_path.size() - str_postfix.size(); if (size_prefix > 0 && str_split_path.find(str_postfix, size_prefix) != std::string::npos) { snprintf(dest, std::min((size_t) size_prefix + 1, maxlen), "%s", split_path); return size_prefix;