From 76e72db74cbee0d3cef53a66cea1729ddf805ec2 Mon Sep 17 00:00:00 2001 From: marcus Date: Sat, 13 Mar 2010 09:09:07 +0000 Subject: Void functions do not return anything. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13807 df743ca5-7f9a-e211-a948-0013205c9059 --- mail/evolution-exchange/files/patch-eplugin_exchange-operations.c | 2 +- mail/evolution/files/fix-plugins.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mail/evolution-exchange/files/patch-eplugin_exchange-operations.c b/mail/evolution-exchange/files/patch-eplugin_exchange-operations.c index 0b8e3e23d..49adfb514 100644 --- a/mail/evolution-exchange/files/patch-eplugin_exchange-operations.c +++ b/mail/evolution-exchange/files/patch-eplugin_exchange-operations.c @@ -14,5 +14,5 @@ +void g_module_unload (gpointer module); +void +g_module_unload (gpointer module) { -+ return NULL; ++ return; +} diff --git a/mail/evolution/files/fix-plugins.sh b/mail/evolution/files/fix-plugins.sh index 755fee890..0d25e324d 100755 --- a/mail/evolution/files/fix-plugins.sh +++ b/mail/evolution/files/fix-plugins.sh @@ -13,7 +13,7 @@ for i in ${plugin_srcs}; do printf "const char * g_module_check_init (gpointer module);\n" >> ${WRKSRC}/plugins/${i} printf "const char *\ng_module_check_init (gpointer module) {\n\treturn NULL;\n}\n" >> ${WRKSRC}/plugins/${i} printf "void g_module_unload (gpointer module);\n" >> ${WRKSRC}/plugins/${i} - printf "void\ng_module_unload (gpointer module) {\n\treturn NULL;\n}\n" >> ${WRKSRC}/plugins/${i} + printf "void\ng_module_unload (gpointer module) {\n\treturn;\n}\n" >> ${WRKSRC}/plugins/${i} dir=$(dirname ${WRKSRC}/plugins/${i}) if ! grep -q e_plugin_lib_enable ${dir}/*.c; then printf "#include \n" >> ${WRKSRC}/plugins/${i} -- cgit v1.2.3