From deb3c32a494281ea07bb4173e6b53caf7b96c993 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Tue, 3 May 2005 02:21:57 +0000 Subject: [PATCH] correct documentation for ast_sched_add (bug #4136) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5556 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/sched.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asterisk/sched.h b/include/asterisk/sched.h index a97dce8d6f..52d29e4e04 100755 --- a/include/asterisk/sched.h +++ b/include/asterisk/sched.h @@ -62,7 +62,7 @@ typedef int (*ast_sched_cb)(void *data); * Schedule an event to take place at some point in the future. callback * will be called with data as the argument, when milliseconds into the * future (approximately) - * Returns 0 on success, -1 on failure + * Returns a schedule item ID on success, -1 on failure */ extern int ast_sched_add(struct sched_context *con, int when, ast_sched_cb callback, void *data);