Forgotten macros
authorMatthias Clasen <matthiasc@src.gnome.org>
Sun, 3 Sep 2006 03:49:38 +0000 (03:49 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 3 Sep 2006 03:49:38 +0000 (03:49 +0000)
ChangeLog
glib/gtimer.c

index 2f2de6a49694fc166fed6fdb1fbc869516f01513..98ffe213713053b6da91137a1f720d6f0cb22939 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-09-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gtimer.c: Forgotten HAVE_CLOCK_GETTIME.
+
 2006-09-02  Tor Lillqvist  <tml@novell.com>
 
        * glib/gutils.c (g_get_any_init_do): Correct C99ism (mixed
index b0bfab1723624c719affdad6e8f9735f2f441295..c58b9b9f9506cf7d1223cbbb341cf6f145c39b22 100644 (file)
@@ -257,7 +257,7 @@ g_timer_elapsed (GTimer *timer,
 
   if (microseconds)
     *microseconds = (elapsed / 10) % 1000000;
-#elif HAVE_CLOCK_GETTIME
+#elif USE_CLOCK_GETTIME
   if (timer->active)
     GETTIME (timer->end);