Small argument fix
This commit is contained in:
parent
9ff7c9fea2
commit
e485fdb9eb
4
svkbd.c
4
svkbd.c
@ -113,7 +113,7 @@ buttonrelease(XEvent *e) {
|
|||||||
Key *k;
|
Key *k;
|
||||||
|
|
||||||
if((k = findkey(ev->x, ev->y)))
|
if((k = findkey(ev->x, ev->y)))
|
||||||
unpress(k);
|
unpress();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -273,7 +273,7 @@ initfont(const char *fontstr) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
leavenotify(XEvent *e) {
|
leavenotify(XEvent *e) {
|
||||||
unpress(NULL);
|
unpress();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Reference in New Issue
Block a user