From 1022119787504ed2f12b63f9d4e31c79ffbee4d2 Mon Sep 17 00:00:00 2001 From: Stuart Henderson Date: Sun, 17 Mar 2013 23:41:15 +0000 Subject: [PATCH] NULL != 0 --- icb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icb.c b/icb.c index 3d00dc3..8608c6f 100644 --- a/icb.c +++ b/icb.c @@ -316,7 +316,7 @@ icb_status(struct icb_session *is, int type, const char *fmt, ...) { STATUS_STATUS, "Status" }, { STATUS_TOPIC, "Topic" }, { STATUS_WARNING, "Warning" }, - { NULL, NULL } + { 0, NULL } }; if (type < 0 || type > (int)nitems(msgtab) - 1)