diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-12-17 18:10:07 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-12-17 18:10:24 +0100 |
commit | 07440b75bcbd20056c11f2375d3aa765788af034 (patch) | |
tree | d521cf1ca9b41127d3c70458210a39bd3c319e80 | |
parent | 317b9f00658cf5cb3bcb3e444349278388622f60 (diff) |
Fix comment style
* console-client/kbd-repeat.c (kbd_repeat_key): Fix comment style.
-rw-r--r-- | console-client/kbd-repeat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-client/kbd-repeat.c b/console-client/kbd-repeat.c index e45902d7..641520ca 100644 --- a/console-client/kbd-repeat.c +++ b/console-client/kbd-repeat.c @@ -69,8 +69,8 @@ kbd_repeat_key (kd_event *key) pthread_mutex_lock (&global_lock); while (kbdbuf.size + sizeof (kd_event) > KBDBUFSZ) { - /* The input buffer is full, wait until there is some space. If this call - * is interrupted, silently continue. */ + /* The input buffer is full, wait until there is some space. If this call + is interrupted, silently continue. */ (void) pthread_hurd_cond_wait_np (&kbdbuf.writecond, &global_lock); } ev = (kd_event *) &kbdbuf.keybuffer[KBDBUF_POS (kbdbuf.pos |