dwm

dynamic window manager

git clone https://9o.is/git/dwm.git

commit 0d862487725077c188f65b351414379311aadf63
parent 20d8bfd2cf59c70499a84409957adbc20711278b
Author: NRK <nrk@disroot.org>
Date:   Thu, 14 Jul 2022 07:27:34 +0600

use named parameter for func prototype

all the other prototypes use names.

Diffstat:
Mdwm.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dwm.c b/dwm.c @@ -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);