aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFRIGN <dev@frign.de>2016-10-02 00:03:18 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-10-10 20:40:13 +0200
commit6a1bd896356ae3b59053b5e458fdff62d076114b (patch)
treeb26c19204933463ee3efee06de456ecad581df9e
parentb099d2fd1868a5497069b85e5af0e6148077a6ba (diff)
No need for oldc to be static
-rw-r--r--slock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/slock.c b/slock.c
index 47d2e21..6dbf966 100644
--- a/slock.c
+++ b/slock.c
@@ -130,15 +130,15 @@ readpw(Display *dpy, struct xrandr *rr, struct lock **locks, int nscreens,
130{ 130{
131 XRRScreenChangeNotifyEvent *rre; 131 XRRScreenChangeNotifyEvent *rre;
132 char buf[32], passwd[256], *inputhash; 132 char buf[32], passwd[256], *inputhash;
133 int num, screen, running, failure; 133 int num, screen, running, failure, oldc;
134 unsigned int len, color; 134 unsigned int len, color;
135 KeySym ksym; 135 KeySym ksym;
136 XEvent ev; 136 XEvent ev;
137 static int oldc = INIT;
138 137
139 len = 0; 138 len = 0;
140 running = 1; 139 running = 1;
141 failure = 0; 140 failure = 0;
141 oldc = INIT;
142 142
143 while (running && !XNextEvent(dpy, &ev)) { 143 while (running && !XNextEvent(dpy, &ev)) {
144 if (ev.type == KeyPress) { 144 if (ev.type == KeyPress) {