summaryrefslogtreecommitdiffstats
path: root/src/test/test-process-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/test-process-util.c')
-rw-r--r--src/test/test-process-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test-process-util.c b/src/test/test-process-util.c
index b90b892192..e915207e8c 100644
--- a/src/test/test-process-util.c
+++ b/src/test/test-process-util.c
@@ -614,7 +614,7 @@ TEST(getpid_measure) {
(void) getpid();
q = now(CLOCK_MONOTONIC) - t;
- log_info(" glibc getpid(): %lf µs each\n", (double) q / iterations);
+ log_info(" glibc getpid(): %lf μs each\n", (double) q / iterations);
iterations *= 50; /* _cached() is about 50 times faster, so we need more iterations */
@@ -623,7 +623,7 @@ TEST(getpid_measure) {
(void) getpid_cached();
q = now(CLOCK_MONOTONIC) - t;
- log_info("getpid_cached(): %lf µs each\n", (double) q / iterations);
+ log_info("getpid_cached(): %lf μs each\n", (double) q / iterations);
}
TEST(safe_fork) {