diff options
author | NRK <nrk@disroot.org> | 2022-07-14 07:27:34 +0600 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-07-15 20:53:56 +0200 |
commit | 9bffa845faa181fb3afe05f3dc86ad79c80736be (patch) | |
tree | 3a6ac9174b9ac4d76813fcd1c086d4381abaf5ae | |
parent | d3f93c7c1a13a2a78f04fb41ad1935525df948db (diff) |
use named parameter for func prototype
all the other prototypes use names.
-rw-r--r-- | dwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -185,7 +185,7 @@ static void monocle(Monitor *m); static void motionnotify(XEvent *e); static void movemouse(const Arg *arg); static Client *nexttiled(Client *c); -static void pop(Client *); +static void pop(Client *c); static void propertynotify(XEvent *e); static void quit(const Arg *arg); static Monitor *recttomon(int x, int y, int w, int h); @@ -209,7 +209,7 @@ static void sigchld(int unused); static void spawn(const Arg *arg); static void tag(const Arg *arg); static void tagmon(const Arg *arg); -static void tile(Monitor *); +static void tile(Monitor *m); static void togglebar(const Arg *arg); static void togglefloating(const Arg *arg); static void toggletag(const Arg *arg); |