From 1c36faf822e6370396e4737b00133e8f702572e3 Mon Sep 17 00:00:00 2001
From: Harish Krishnaswamy <kharish@novell.com>
Date: Thu, 10 Nov 2005 07:00:09 +0000
Subject: Function signature specifies a void return. So, do not return NULL.

2005-11-10  Harish Krishnaswamy  <kharish@novell.com>

* mail-send-options.c: (org_gnome_compose_send_options):
Function signature specifies a void return. So, do not
return NULL.

svn path=/trunk/; revision=30591
---
 plugins/groupwise-features/mail-send-options.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'plugins/groupwise-features/mail-send-options.c')

diff --git a/plugins/groupwise-features/mail-send-options.c b/plugins/groupwise-features/mail-send-options.c
index 2d4e0f5066..19b48608de 100644
--- a/plugins/groupwise-features/mail-send-options.c
+++ b/plugins/groupwise-features/mail-send-options.c
@@ -145,7 +145,7 @@ org_gnome_compose_send_options (EPlugin *ep, EMMenuTargetWidget *t)
 	temp = strstr (url, "groupwise") ;
 	if (!temp) {
 		g_print ("Sorry send options only available for a groupwise account\n") ;
-		return NULL;
+		return;
 	} 
 	g_free (temp) ;
 	/*disply the send options dialog*/
-- 
cgit