diff options
author | NRK <nrk@disroot.org> | 2022-07-14 07:27:34 +0600 |
---|---|---|
committer | rafa_99 <raroma09@gmail.com> | 2022-07-16 16:37:47 +0100 |
commit | 1a3026499753ea68cfe078f4fb47ff739ac33708 (patch) | |
tree | 5cf8556396ca20c8b65fcdadb8f974782e91a7a6 /dwm.c | |
parent | 2cff816768b35933da6e1a7360b37e660bc5f37b (diff) |
use named parameter for func prototype
all the other prototypes use names.
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -201,7 +201,7 @@ static void motionnotify(XEvent *e); static void movemouse(const Arg *arg); static Client *nexttiled(Client *c); static void opacity(Client *c, double opacity); -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); |