summary refs log tree commit diff stats
path: root/plugins/fishlim/keystore.c
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2016-02-18 08:57:22 -0500
committerPatrick Griffis <tingping@tingping.se>2016-02-18 08:57:22 -0500
commitaab881fda26578edb5c17a705069e55e8c612f29 (patch)
treeb78d8a2646f0b9edb08060c095b21baed29de5d3 /plugins/fishlim/keystore.c
parent05385f247917cae2d15f648e1983e0d82b9ae923 (diff)
Fix strict prototype warnings
Diffstat (limited to 'plugins/fishlim/keystore.c')
-rw-r--r--plugins/fishlim/keystore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/fishlim/keystore.c b/plugins/fishlim/keystore.c
index 84373996..298b9fa3 100644
--- a/plugins/fishlim/keystore.c
+++ b/plugins/fishlim/keystore.c
@@ -39,7 +39,7 @@ static char *keystore_password = NULL;
 /**
  * Opens the key store file: ~/.config/hexchat/addon_fishlim.conf
  */
-static GKeyFile *getConfigFile() {
+static GKeyFile *getConfigFile(void) {
     gchar *filename = get_config_filename();
     
     GKeyFile *keyfile = g_key_file_new();
@@ -55,7 +55,7 @@ static GKeyFile *getConfigFile() {
 /**
  * Returns the key store password, or the default.
  */
-static const char *get_keystore_password() {
+static const char *get_keystore_password(void) {
     return (keystore_password != NULL ?
         keystore_password :
         /* Silly default value... */