summaryrefslogtreecommitdiff
path: root/gnulib/lib/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnulib/lib/sleep.c')
-rw-r--r--gnulib/lib/sleep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnulib/lib/sleep.c b/gnulib/lib/sleep.c
index 45b9d803..9a4b9400 100644
--- a/gnulib/lib/sleep.c
+++ b/gnulib/lib/sleep.c
@@ -1,5 +1,5 @@
/* Pausing execution of the current thread.
- Copyright (C) 2007, 2009-2011 Free Software Foundation, Inc.
+ Copyright (C) 2007, 2009-2012 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2007.
This program is free software: you can redistribute it and/or modify
@@ -35,7 +35,7 @@ sleep (unsigned int seconds)
unsigned int remaining;
/* Sleep for 1 second many times, because
- 1. Sleep is not interruptiple by Ctrl-C,
+ 1. Sleep is not interruptible by Ctrl-C,
2. we want to avoid arithmetic overflow while multiplying with 1000. */
for (remaining = seconds; remaining > 0; remaining--)
Sleep (1000);