From 1eacdbd74bb349a70fd0e0a0f49beff0eb5658e5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jonathan=20Neusch=C3=A4fer?= Date: Thu, 29 Dec 2011 14:23:06 +0100 Subject: [PATCH] conf.c: return void in read_configuration --- src/conf.c | 4 +--- src/conf.h | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/conf.c b/src/conf.c index 4496abe..476c044 100644 --- a/src/conf.c +++ b/src/conf.c @@ -619,7 +619,7 @@ build_user_key_binding_filename(void) return g_build_filename(g_get_home_dir(), "." PACKAGE, "keys", NULL); } -int +void read_configuration(void) { char *filename = NULL; @@ -681,6 +681,4 @@ read_configuration(void) g_free(filename); filename = NULL; } - - return 0; } diff --git a/src/conf.h b/src/conf.h index 55bc21b..89f80fc 100644 --- a/src/conf.h +++ b/src/conf.h @@ -26,5 +26,5 @@ char *build_system_conf_filename(void); char *build_user_key_binding_filename(void); -int read_configuration(void); +void read_configuration(void); -- 2.30.2