summaryrefslogtreecommitdiff
path: root/lib/common/Test.cpp
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2010-03-02 08:26:13 +0000
committerChris Wilson <chris+github@qwirx.com>2010-03-02 08:26:13 +0000
commit3584f271b43b6274d3be1ff68f5d1eb3b3136e1d (patch)
tree46d8478e424b5732d5990022c3770766a747d577 /lib/common/Test.cpp
parent08cc80e58991acb84326228bcffa49619f7444f2 (diff)
fix typo properly
Diffstat (limited to 'lib/common/Test.cpp')
-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.