summaryrefslogtreecommitdiff
path: root/console-client/kbd-repeat.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2012-12-17 18:10:07 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2012-12-17 18:10:24 +0100
commit07440b75bcbd20056c11f2375d3aa765788af034 (patch)
treed521cf1ca9b41127d3c70458210a39bd3c319e80 /console-client/kbd-repeat.c
parent317b9f00658cf5cb3bcb3e444349278388622f60 (diff)
Fix comment style
* console-client/kbd-repeat.c (kbd_repeat_key): Fix comment style.
Diffstat (limited to 'console-client/kbd-repeat.c')
-rw-r--r--console-client/kbd-repeat.c4
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