summaryrefslogtreecommitdiff
path: root/main/sched.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2014-08-28 00:15:03 +0000
committerRichard Mudgett <rmudgett@digium.com>2014-08-28 00:15:03 +0000
commita02d8a0681407bfe6ccc56708e6e1c1a1d5d44e3 (patch)
tree81053eb3f51dd1d421d167a60deb6124a2e73674 /main/sched.c
parent372236cc2aa6b5974d741b12fa6b010b5efbd80c (diff)
sched: Fix typo and whitespace change.
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@422200 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/sched.c')
-rw-r--r--main/sched.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/main/sched.c b/main/sched.c
index 6161185e4..97e07eab5 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;