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 2f2de6a..98ffe21 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 b0bfab1..c58b9b9 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);