From 448300c7d20038460411b6db8181efda0fe2e6bd Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Wed, 24 Sep 2014 08:37:27 +0200 Subject: [PATCH] ANSI decl --- src/pxdg.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/pxdg.c b/src/pxdg.c index 14c3021..ec52fb0 100644 --- a/src/pxdg.c +++ b/src/pxdg.c @@ -27,10 +27,11 @@ #include #include +#include static const char *KEY_GNOME_AUTOSTART = "X-GNOME-Autostart-enabled"; -static char *get_user_autostart_dir() +static char *get_user_autostart_dir(void) { const char *xdg_cfg_dir; @@ -41,7 +42,7 @@ static char *get_user_autostart_dir() return path_append(xdg_cfg_dir, "autostart"); } -static char *get_user_desktop_file() +static char *get_user_desktop_file(void) { char *dir, *path; @@ -53,7 +54,7 @@ static char *get_user_desktop_file() return path; } -static const char *get_desktop_file() +static const char *get_desktop_file(void) { return DATADIR"/applications/"PSENSOR_DESKTOP_FILE; } @@ -98,7 +99,7 @@ static int is_user_desktop_autostarted(GKeyFile *f) NULL); } -int pxdg_is_autostarted() +int pxdg_is_autostarted(void) { char *user_desktop; unsigned int ret; -- 2.7.4