summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/common/Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/Test.cpp b/lib/common/Test.cpp
index b1cbb5a9..56638058 100644
--- a/lib/common/Test.cpp
+++ b/lib/common/Test.cpp
@@ -462,7 +462,7 @@ void safe_sleep(int seconds)
ts.tv_nsec = 0;
while (nanosleep(&ts, &ts) == -1 && errno == EINTR)
{
- // FIME evil hack for OSX, where ts.tv_sec contains
+ // FIXME evil hack for OSX, where ts.tv_sec contains
// a negative number interpreted as unsigned 32-bit
// when nanosleep() returns later than expected.