mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
Correct extern declaration and while here, rename a variable to be
pedantic. from Thomas Pfaff. ok oga@
This commit is contained in:
4
kbfunc.c
4
kbfunc.c
@ -35,7 +35,7 @@
|
||||
#define KNOWN_HOSTS ".ssh/known_hosts"
|
||||
#define HASH_MARKER "|1|"
|
||||
|
||||
extern int _xev_quit;
|
||||
extern sig_atomic_t xev_quit;
|
||||
|
||||
void
|
||||
kbfunc_client_lower(struct client_ctx *cc, union arg *arg)
|
||||
@ -491,7 +491,7 @@ kbfunc_client_freeze(struct client_ctx *cc, union arg *arg)
|
||||
void
|
||||
kbfunc_quit_wm(struct client_ctx *cc, union arg *arg)
|
||||
{
|
||||
_xev_quit = 1;
|
||||
xev_quit = 1;
|
||||
}
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user