From c9c31d8d15c2e7034a9a4dc1135a95aa60066b6d Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Mon, 10 Nov 2014 23:12:53 +0100 Subject: Remove space before function names --- src/utils.c | 2 +- src/yawa.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/utils.c b/src/utils.c index 29fdd65..20cc6d4 100644 --- a/src/utils.c +++ b/src/utils.c @@ -34,7 +34,7 @@ parse_int(char *string, char *arg) } bool -parse_color (char *hex, Color *c, int a) +parse_color(char *hex, Color *c, int a) { if ((strlen(hex) != 7) && (strlen(hex) != 9)) return false; diff --git a/src/yawa.c b/src/yawa.c index e3eb793..a7978cf 100644 --- a/src/yawa.c +++ b/src/yawa.c @@ -34,7 +34,7 @@ /* Order of parameters: KEY, ARG, STATE. */ static error_t -parse_opt (int key, char *arg, struct argp_state *state) +parse_opt(int key, char *arg, struct argp_state *state) { struct arguments *arguments = state->input; @@ -155,7 +155,7 @@ static int screen; // Adapted from fluxbox' bsetroot int -set_root_atoms (Pixmap pixmap) +set_root_atoms(Pixmap pixmap) { Atom atom_root, atom_eroot, type; unsigned char *data_root, *data_eroot; @@ -204,7 +204,7 @@ set_root_atoms (Pixmap pixmap) } int -load_image (ImageMode mode, const char *arg, int rootW, int rootH, +load_image(ImageMode mode, const char *arg, int rootW, int rootH, int alpha, Imlib_Image rootimg) { int imgW, imgH, o; @@ -282,7 +282,7 @@ load_image (ImageMode mode, const char *arg, int rootW, int rootH, } int -main (int argc, char **argv) +main(int argc, char **argv) { struct arguments arguments = { "", "", {{0}}, "", "", 0, 0, 0, 0, 0, 0, 0, -- cgit v1.2.3-54-g00ecf