summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2009-01-18 00:53:02 +0100
committerNeal H. Walfield <neal@gnu.org>2009-01-18 00:53:02 +0100
commit51088c5d0e9cb261cd114c297447abd149a2b98d (patch)
tree88819b0f1cc95636205fc9573916525a5c50ac2c /libpthread
parent8c209a7cfd796c31089a25851493d6ca0f0e4229 (diff)
Fix warning about ''s in #warnings.
2009-01-18 Neal H. Walfield <neal@gnu.org> * sysdeps/viengoos/pt-spin.c (_pthread_spin_lock): Don't use a ' in the #warning.
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/ChangeLog5
-rw-r--r--libpthread/sysdeps/viengoos/pt-spin.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/libpthread/ChangeLog b/libpthread/ChangeLog
index 8f0a352..be9d134 100644
--- a/libpthread/ChangeLog
+++ b/libpthread/ChangeLog
@@ -1,3 +1,8 @@
+2009-01-18 Neal H. Walfield <neal@gnu.org>
+
+ * sysdeps/viengoos/pt-spin.c (_pthread_spin_lock): Don't use a '
+ in the #warning.
+
2009-01-17 Neal H. Walfield <neal@gnu.org>
* sysdeps/viengoos/pt-docancel.c (__pthread_do_cancel): Use
diff --git a/libpthread/sysdeps/viengoos/pt-spin.c b/libpthread/sysdeps/viengoos/pt-spin.c
index 6d6df7e..bc8622b 100644
--- a/libpthread/sysdeps/viengoos/pt-spin.c
+++ b/libpthread/sysdeps/viengoos/pt-spin.c
@@ -48,7 +48,7 @@ _pthread_spin_lock (__pthread_spinlock_t *lock)
l4_time_t timeout;
timeout = l4_time_period (2);
#else
-# warning Don't know how to sleep on this platform.
+# warning Do not know how to sleep on this platform.
#endif
while (1)