From 9fae4e8c01ac3404bb98fd868c0b198f3b7570b3 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Wed, 23 Jun 2010 20:27:09 -0400 Subject: [PATCH] Sending NULL body is allowed --- tools/notify-send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/notify-send.c b/tools/notify-send.c index e1831f4..20fe666 100644 --- a/tools/notify-send.c +++ b/tools/notify-send.c @@ -222,7 +222,7 @@ main (int argc, char *argv[]) exit (1); notify = notify_notification_new (summary, - body == NULL ? "" : body, + body, icon_str, NULL); notify_notification_set_category (notify, type);