ソースを参照

Fix the conversion from microseconds to nanoseconds

master
Quentin Rameau 8年前
committed by Hiltjo Posthuma
コミット
b048eacc9d
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      dmenu.c

+ 1
- 1
dmenu.c ファイルの表示

@@ -203,7 +203,7 @@ drawmenu(void)
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 */


読み込み中…
キャンセル
保存