aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/nogaim.c
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2016-11-28 16:26:16 -0300
committerdequis <dx@dxzone.com.ar>2016-11-28 16:26:16 -0300
commit0483e1e6e3954787058aff78223cb758f0074f2d (patch)
tree887ef672f103c08cdb25e3f48a8e01adcf636c94 /protocols/nogaim.c
parent2a1c27f7d49e5065d4af598848bb3810bcf65e93 (diff)
Fix some compiler warnings
warn_unused_result on write() is particularly annoying. You can't just add (void) to ignore it due to gcc bug 66425. I replaced some of those with fwrite() and used a variable marked with the G_GNUC_UNUSED attribute for the writes from signal handlers.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r--protocols/nogaim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c
index 2f6b3783..e4db7024 100644
--- a/protocols/nogaim.c
+++ b/protocols/nogaim.c
@@ -53,7 +53,7 @@ gboolean load_plugin(char *path)
{
GList *l;
struct plugin_info *i;
- struct plugin_info *info;
+ struct plugin_info *info = NULL;
struct plugin_info * (*info_function) (void) = NULL;
void (*init_function) (void);