From: Daniel Wagner Date: Wed, 31 Oct 2012 09:33:26 +0000 (+0100) Subject: storage: Add void if function does not have any arguments X-Git-Tag: 1.10~221 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b067f2681d69fb9690f4d6b4e2ef62485ea4fd2;p=platform%2Fupstream%2Fconnman.git storage: Add void if function does not have any arguments --- diff --git a/src/connman.h b/src/connman.h index 65a7788..2472dab 100644 --- a/src/connman.h +++ b/src/connman.h @@ -209,10 +209,10 @@ int __connman_resolvfile_remove(const char *interface, const char *domain, const int __connman_resolver_redo_servers(const char *interface); void __connman_storage_migrate(void); -GKeyFile *__connman_storage_open_global(); -GKeyFile *__connman_storage_load_global(); +GKeyFile *__connman_storage_open_global(void); +GKeyFile *__connman_storage_load_global(void); int __connman_storage_save_global(GKeyFile *keyfile); -void __connman_storage_delete_global(); +void __connman_storage_delete_global(void); GKeyFile *__connman_storage_load_config(const char *ident); diff --git a/src/storage.c b/src/storage.c index 29291dc..8c06ffe 100644 --- a/src/storage.c +++ b/src/storage.c @@ -86,7 +86,7 @@ static void storage_delete(const char *pathname) connman_error("Failed to remove %s", pathname); } -GKeyFile *__connman_storage_load_global() +GKeyFile *__connman_storage_load_global(void) { gchar *pathname; GKeyFile *keyfile = NULL; @@ -118,7 +118,7 @@ int __connman_storage_save_global(GKeyFile *keyfile) return ret; } -void __connman_storage_delete_global() +void __connman_storage_delete_global(void) { gchar *pathname; @@ -169,7 +169,7 @@ GKeyFile *__connman_storage_open_service(const char *service_id) return keyfile; } -gchar **connman_storage_get_services() +gchar **connman_storage_get_services(void) { struct dirent *d; gchar *str; @@ -425,7 +425,7 @@ gchar **__connman_storage_get_providers(void) * This function migrates keys from default.profile to settings file. * This can be removed once the migration is over. */ -void __connman_storage_migrate() +void __connman_storage_migrate(void) { gchar *pathname; GKeyFile *keyfile_def = NULL;