aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-13 17:11:05 +0000
committerrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-13 17:11:05 +0000
commit4ec7cf99119b70d975838f9b6eac19ee5f3c39c8 (patch)
tree462aa155df892a9a3eb0e9b8daf34ef6c649bd61 /res
parentcf73e6b22f8286b7d4232c9780d4d1fcd5b03e34 (diff)
Fix compiler warning.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@223911 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_calendar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_calendar.c b/res/res_calendar.c
index abbfc4d7e..c191c846b 100644
--- a/res/res_calendar.c
+++ b/res/res_calendar.c
@@ -625,7 +625,7 @@ static const struct ast_channel_tech null_tech = {
static void *do_notify(void *data)
{
struct ast_calendar_event *event = data;
- struct ast_dial *dial;
+ struct ast_dial *dial = NULL;
struct ast_str *apptext = NULL;
struct ast_datastore *datastore;
enum ast_dial_result res;