aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_timing_timerfd.c
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-15 22:07:31 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-15 22:07:31 +0000
commitfb6ff080a41b61d894eb7547d9e7477500b9e537 (patch)
tree1e075922f57ce150d0f3a1fb2451fac0c3b4a86e /res/res_timing_timerfd.c
parent76f3f09c6515d4b0d424674cbf1e73e64071af83 (diff)
Clarify error message in res_timing_timerfd.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@240505 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_timing_timerfd.c')
-rw-r--r--res/res_timing_timerfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_timing_timerfd.c b/res/res_timing_timerfd.c
index a62453e4d..12bb493dc 100644
--- a/res/res_timing_timerfd.c
+++ b/res/res_timing_timerfd.c
@@ -266,7 +266,7 @@ static int load_module(void)
/* Make sure we support the necessary clock type */
if ((fd = timerfd_create(CLOCK_MONOTONIC, 0)) < 0) {
- ast_log(LOG_ERROR, "CLOCK_MONOTONIC not supported. Not loading.\n");
+ ast_log(LOG_ERROR, "timerfd_create() not supported by the kernel. Not loading.\n");
return AST_MODULE_LOAD_DECLINE;
}