diff --git a/whisper.cpp b/whisper.cpp index 2e0a6e2e044..8359cad1208 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -3852,7 +3852,7 @@ const char * whisper_print_system_info(void) { s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | "; s += "CUDA = " + std::to_string(ggml_cpu_has_cublas()) + " | "; s += "COREML = " + std::to_string(whisper_has_coreml()) + " | "; - s += "OPENVINO = " + std::to_string(whisper_has_openvino()) + " | "; + s += "OPENVINO = " + std::to_string(whisper_has_openvino()) ; return s.c_str(); }