diff options
author | Madeleine Nilsson <madni@cendio.se> | 2024-11-04 14:59:46 +0100 |
---|---|---|
committer | Madeleine Nilsson <madni@cendio.se> | 2024-11-11 11:23:59 +0100 |
commit | 5b74bf1bbd4aef9f71ef76b718c79fe7b09bf5f5 (patch) | |
tree | 6c5cabc7ce61b3cf9ee622d0f7ae916e3f0d5bee /tests/perf/fbperf.cxx | |
parent | 260a3e0db5d09be0cb732d1a7ce8e758079e0c11 (diff) | |
download | tigervnc-5b74bf1bbd4aef9f71ef76b718c79fe7b09bf5f5.tar.gz tigervnc-5b74bf1bbd4aef9f71ef76b718c79fe7b09bf5f5.zip |
Standardize log message prefix format
The reason for this is to keep a consistency through out the project.
Diffstat (limited to 'tests/perf/fbperf.cxx')
-rw-r--r-- | tests/perf/fbperf.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/perf/fbperf.cxx b/tests/perf/fbperf.cxx index 357aede2..e4d0febf 100644 --- a/tests/perf/fbperf.cxx +++ b/tests/perf/fbperf.cxx @@ -344,7 +344,7 @@ static void dotest(TestWindow* win) // We are restricted by some delay, e.g. refresh rate if (is_constant(frames[0]/time[0], frames[2]/time[2])) { - fprintf(stderr, "WARNING: Fixed delay dominating updates.\n\n"); + fprintf(stderr, "Warning: Fixed delay dominating updates.\n\n"); delay = time[2]/frames[2]; rate = 0.0; } @@ -359,7 +359,7 @@ static void dotest(TestWindow* win) // We can hit cache limits that causes performance to drop // with increasing update size, screwing up our calculations if ((pixels[2] / time[2]) < (pixels[0] / time[0] * 0.9)) { - fprintf(stderr, "WARNING: Unexpected behaviour. Measurement unreliable.\n\n"); + fprintf(stderr, "Warning: Unexpected behaviour. Measurement unreliable.\n\n"); // We can't determine the proportions between these, so divide the // time spent evenly |