summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/res_timing_pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_timing_pthread.c b/res/res_timing_pthread.c
index 6b17e9b85..ead2c2d90 100644
--- a/res/res_timing_pthread.c
+++ b/res/res_timing_pthread.c
@@ -149,7 +149,7 @@ static int pthread_timer_set_rate(int handle, unsigned int rate)
return -1;
}
- if (rate > 0 && rate < MAX_RATE) {
+ if (rate > MAX_RATE) {
ast_log(LOG_ERROR, "res_timing_pthread only supports timers at a max rate of %d / sec\n",
MAX_RATE);
errno = EINVAL;