Small argument fix
This commit is contained in:
parent
9ff7c9fea2
commit
e485fdb9eb
1 changed files with 2 additions and 2 deletions
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue