From c8a4558dd36e594c7453982a18724e02b26ba328 Mon Sep 17 00:00:00 2001 From: Rinigus Date: Tue, 5 Jul 2016 22:56:31 +0300 Subject: [PATCH] typo in error message fixed --- src/cpusleep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpusleep.c b/src/cpusleep.c index 46f10409..bedc02a7 100644 --- a/src/cpusleep.c +++ b/src/cpusleep.c @@ -59,13 +59,13 @@ static int cpusleep_read (void) struct timespec b, m; if ( clock_gettime(CLOCK_BOOTTIME, &b ) < 0 ) { - ERROR("cpusleep plugin: clock_gettime CLOCK_MONOTONIC failed"); + ERROR("cpusleep plugin: clock_boottime failed"); return (-1); } if ( clock_gettime(CLOCK_MONOTONIC, &m ) < 0 ) { - ERROR("cpusleep plugin: clock_gettime CLOCK_MONOTONIC failed"); + ERROR("cpusleep plugin: clock_monotonic failed"); return (-1); } -- 2.30.2