]> git.armaanb.net Git - dwm.git/commitdiff
Function declarations in correct order.
authorChristopher Drelich <cd@cdrakka.com>
Wed, 2 May 2018 22:09:50 +0000 (18:09 -0400)
committerHiltjo Posthuma <hiltjo@codemadness.org>
Sat, 12 May 2018 17:19:20 +0000 (19:19 +0200)
In dwm.c function declarations are in alphabetical order except for
updategeom(). There doesn't appear to be any reason for this, so this
patch corrects that, and now all function declarations are in
alphabetical order.

dwm.c

diff --git a/dwm.c b/dwm.c
index c98678d0cdd6ccfe87ebf53b7367b7d63534f8d0..bb95e26c07e594e2717c715dafefd6ae5fb52644 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -216,10 +216,10 @@ static void toggleview(const Arg *arg);
 static void unfocus(Client *c, int setfocus);
 static void unmanage(Client *c, int destroyed);
 static void unmapnotify(XEvent *e);
-static int updategeom(void);
 static void updatebarpos(Monitor *m);
 static void updatebars(void);
 static void updateclientlist(void);
+static int updategeom(void);
 static void updatenumlockmask(void);
 static void updatesizehints(Client *c);
 static void updatestatus(void);