Fix the conversion from microseconds to nanoseconds
This commit is contained in:
parent
c42c378027
commit
b048eacc9d
2
dmenu.c
2
dmenu.c
@ -203,7 +203,7 @@ drawmenu(void)
|
|||||||
static void
|
static void
|
||||||
grabkeyboard(void)
|
grabkeyboard(void)
|
||||||
{
|
{
|
||||||
struct timespec ts = { .tv_sec = 1, .tv_nsec = 0 };
|
struct timespec ts = { .tv_sec = 0, .tv_nsec = 1000000 };
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* try to grab keyboard, we may have to wait for another process to ungrab */
|
/* try to grab keyboard, we may have to wait for another process to ungrab */
|
||||||
|
Loading…
Reference in New Issue
Block a user