aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/utils.c2
-rw-r--r--src/yawa.c8
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,