Forgotten macros

This commit is contained in:
Matthias Clasen 2006-09-03 03:49:38 +00:00
parent e1ac935e44
commit 51453eab5d
2 changed files with 5 additions and 1 deletions

View File

@ -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> 2006-09-02 Tor Lillqvist <tml@novell.com>
* glib/gutils.c (g_get_any_init_do): Correct C99ism (mixed * glib/gutils.c (g_get_any_init_do): Correct C99ism (mixed

View File

@ -257,7 +257,7 @@ g_timer_elapsed (GTimer *timer,
if (microseconds) if (microseconds)
*microseconds = (elapsed / 10) % 1000000; *microseconds = (elapsed / 10) % 1000000;
#elif HAVE_CLOCK_GETTIME #elif USE_CLOCK_GETTIME
if (timer->active) if (timer->active)
GETTIME (timer->end); GETTIME (timer->end);