From e545299249c11fb7049b3f055a0d3c2a4f3e8639 Mon Sep 17 00:00:00 2001 From: Alex Bacart <13940752+alex-bacart@users.noreply.github.com> Date: Wed, 25 Jan 2023 23:13:25 +0300 Subject: [PATCH] Revert "Update main.cpp" This reverts commit d8924fdcfe8a2980db0af47d42ec206fc1a3e9d0. --- examples/main/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/main/main.cpp b/examples/main/main.cpp index e12b37a..e070ec4 100644 --- a/examples/main/main.cpp +++ b/examples/main/main.cpp @@ -350,7 +350,7 @@ bool output_csv(struct whisper_context * ctx, const char * fname) { const int64_t t1 = whisper_full_get_segment_t1(ctx, i); //need to multiply times returned from whisper_full_get_segment_t{0,1}() by 10 to get milliseconds. - fout << 10 * t0 << ", " << 10 * t1 << ", \"" << text << "\"\n"; + fout << 10 * t0 << "," << 10 * t1 << ",\"" << text << "\"\n"; } return true;