all repos — dmenu @ b048eacc9ddc6ca995783411d4df84c23f3a0351

my build of dmenu

Fix the conversion from microseconds to nanoseconds
Quentin Rameau quinq@fifth.space
Mon, 28 Sep 2015 00:18:35 +0200
commit

b048eacc9ddc6ca995783411d4df84c23f3a0351

parent

c42c3780274e6b12eaeab918cf7c13d2c36cf253

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M dmenu.cdmenu.c

@@ -203,7 +203,7 @@

static void grabkeyboard(void) { - struct timespec ts = { .tv_sec = 1, .tv_nsec = 0 }; + struct timespec ts = { .tv_sec = 0, .tv_nsec = 1000000 }; int i; /* try to grab keyboard, we may have to wait for another process to ungrab */