diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2007-09-04 06:21:22 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2007-09-04 06:27:10 +0200 |
| commit | 556eb7b7fb20b3b0db03b6d92259ad3bb16dccde (patch) | |
| tree | e1d67b73f558a23a925ef90abb7575013d5cd89e /openbox/config.c | |
| parent | 9b803f4755b73d1e3d28943c4c141493ad36317c (diff) | |
ANSI function declarations, ie () -> (void)
Diffstat (limited to 'openbox/config.c')
| -rw-r--r-- | openbox/config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/config.c b/openbox/config.c index cd38d7b9..ff4c542b 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -96,7 +96,7 @@ gint config_resist_edge; GSList *config_per_app_settings; -ObAppSettings* config_create_app_settings() +ObAppSettings* config_create_app_settings(void) { ObAppSettings *settings = g_new0(ObAppSettings, 1); settings->decor = -1; @@ -785,7 +785,7 @@ typedef struct const gchar *actname; } ObDefKeyBind; -static void bind_default_keyboard() +static void bind_default_keyboard(void) { ObDefKeyBind *it; ObDefKeyBind binds[] = { @@ -808,7 +808,7 @@ typedef struct const gchar *actname; } ObDefMouseBind; -static void bind_default_mouse() +static void bind_default_mouse(void) { ObDefMouseBind *it; ObDefMouseBind binds[] = { @@ -962,7 +962,7 @@ void config_startup(ObParseInst *i) parse_register(i, "applications", parse_per_app_settings, NULL); } -void config_shutdown() +void config_shutdown(void) { GSList *it; |
