summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2022-07-14 07:27:34 +0600
committerrafa_99 <raroma09@gmail.com>2022-07-16 16:37:47 +0100
commit1a3026499753ea68cfe078f4fb47ff739ac33708 (patch)
tree5cf8556396ca20c8b65fcdadb8f974782e91a7a6
parent2cff816768b35933da6e1a7360b37e660bc5f37b (diff)
use named parameter for func prototype
all the other prototypes use names.
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index a41a37b..2364cad 100644
--- a/dwm.c
+++ b/dwm.c
@@ -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);