diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-02-18 08:57:22 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-02-18 08:57:22 -0500 |
commit | aab881fda26578edb5c17a705069e55e8c612f29 (patch) | |
tree | b78d8a2646f0b9edb08060c095b21baed29de5d3 /plugins/fishlim/plugin_hexchat.c | |
parent | 05385f247917cae2d15f648e1983e0d82b9ae923 (diff) |
Fix strict prototype warnings
Diffstat (limited to 'plugins/fishlim/plugin_hexchat.c')
-rw-r--r-- | plugins/fishlim/plugin_hexchat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/fishlim/plugin_hexchat.c b/plugins/fishlim/plugin_hexchat.c index 556a2f51..0afecd82 100644 --- a/plugins/fishlim/plugin_hexchat.c +++ b/plugins/fishlim/plugin_hexchat.c @@ -48,7 +48,7 @@ static hexchat_plugin *ph; /** * Returns the path to the key store file. */ -gchar *get_config_filename() { +gchar *get_config_filename(void) { char *filename_fs, *filename_utf8; filename_utf8 = g_build_filename(hexchat_get_info(ph, "configdir"), "addon_fishlim.conf", NULL); |