diff --git a/include/asterisk/sched.h b/include/asterisk/sched.h
index aac6dc82b1ff3a4837bf6b178cfccd723a3b1af1..67dbf21cef734d64baf12c146211893c7c5c68ed 100644
--- a/include/asterisk/sched.h
+++ b/include/asterisk/sched.h
@@ -165,7 +165,7 @@ void ast_sched_context_destroy(struct ast_sched_context *c);
  * A scheduler callback takes a pointer with callback data and
  *
  * \retval 0 if the callback should not be rescheduled
- * \retval non-zero if the callback should be scheduled agai
+ * \retval non-zero if the callback should be scheduled again
  */
 typedef int (*ast_sched_cb)(const void *data);
 #define AST_SCHED_CB(a) ((ast_sched_cb)(a))
diff --git a/main/sched.c b/main/sched.c
index 6161185e46d0da9bb1321c920edcd2c6cd7b6c65..97e07eab5f450011a73291106e7f1932dab1b581 100644
--- a/main/sched.c
+++ b/main/sched.c
@@ -496,9 +496,10 @@ int _ast_sched_del(struct ast_sched_context *con, int id, const char *file, int
 		ast_assert(s != NULL);
 #else
 		{
-		char buf[100];
-		snprintf(buf, sizeof(buf), "s != NULL, id=%d", id);
-		_ast_assert(0, buf, file, line, function);
+			char buf[100];
+
+			snprintf(buf, sizeof(buf), "s != NULL, id=%d", id);
+			_ast_assert(0, buf, file, line, function);
 		}
 #endif
 		*last_id = id;