From cab3fc915c387e24e4228f019745a76ca592dbc4 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Sat, 1 Jun 2013 10:51:18 -0400 Subject: [PATCH] Fix: remove double quotes around a NULL value Fixes #34 Signed-off-by: David Goulet --- src/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.c b/src/module.c index 46eae8f..5877315 100644 --- a/src/module.c +++ b/src/module.c @@ -36,7 +36,7 @@ GCRY_THREAD_OPTION_PTHREAD_IMPL; static const char *signal_args_otr_event[] = { - "iobject", "string", "string", "NULL" + "iobject", "string", "string", NULL }; int debug = FALSE; -- 1.8.3.2