diff --git a/res/res_timing_timerfd.c b/res/res_timing_timerfd.c
index a62453e4d72e09bc1482f3e807fec04dbd7eeb11..12bb493dc134734e7b89e75a1af9ec4bddcdc087 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;
 	}