diff --git a/common/JackEngineProfiling.cpp b/common/JackEngineProfiling.cpp
index bf065970..4557fec9 100644
--- a/common/JackEngineProfiling.cpp
+++ b/common/JackEngineProfiling.cpp
@@ -293,28 +293,39 @@ JackEngineProfiling::~JackEngineProfiling()
std::ofstream fStream6("Timings.html", std::ios_base::ate);
if (!fStream6.is_open()) {
- jack_error("JackEngineProfiling::Save cannot open Timing6.html file");
+ jack_error("JackEngineProfiling::Save cannot open Timings.html file");
} else {
- fStream6 << "
\n";
- fStream6 << "JACK engine profiling
\n";
- fStream6 << "\n";
- fStream6 << "
\n";
- fStream6 << "
\n";
- fStream6 << "
\n";
- fStream6 << "
\n";
- fStream6 << "
\n";
- fStream6 << "\n";
+ fStream6 << "\n";
+ fStream6 << "\n";
+ fStream6 << "\n";
+ fStream6 << " \n";
+ fStream6 << " JACK engine profiling\n";
+ fStream6 << " \n";
+ fStream6 << " \n";
+ fStream6 << " \n";
+ fStream6 << " \n";
+ fStream6 << " JACK engine profiling
\n";
+ fStream6 << " ";
+ fStream6 << " ";
+ fStream6 << " ";
+ fStream6 << " ";
+ fStream6 << " ";
+ fStream6 << " \n";
+ fStream6 << "\n";
}
std::ofstream fStream7("generate_timings", std::ios_base::ate);
if (!fStream7.is_open()) {
jack_error("JackEngineProfiling::Save cannot open generate_timings file");
} else {
- fStream7 << "gnuplot Timing1.plot\n";
- fStream7 << "gnuplot Timing2.plot\n";
- fStream7 << "gnuplot Timing3.plot\n";
- fStream7 << "gnuplot Timing4.plot\n";
- fStream7 << "gnuplot Timing5.plot\n";
+ fStream7 << "gnuplot -persist Timing1.plot \n";
+ fStream7 << "gnuplot -persist Timing2.plot\n";
+ fStream7 << "gnuplot -persist Timing3.plot\n";
+ fStream7 << "gnuplot -persist Timing4.plot\n";
+ fStream7 << "gnuplot -persist Timing5.plot\n";
}
}