Skip to content

Commit 75a5139

Browse files
authored
tts : add new line in error message
1 parent 986ade7 commit 75a5139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/tts/tts.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ static std::vector<llama_token> prepare_guide_tokens(const llama_vocab * vocab,
464464
static json speaker_from_file(const std::string & speaker_file) {
465465
std::ifstream file(speaker_file);
466466
if (!file) {
467-
LOG_ERR("%s: Failed to open file '%s' for reading", __func__, speaker_file.c_str());
467+
LOG_ERR("%s: Failed to open file '%s' for reading\n", __func__, speaker_file.c_str());
468468
return json();
469469
}
470470

0 commit comments

Comments
 (0)