fix tor's recent changes which got rid of a required variable in the
authorTim Janik <timj@gtk.org>
Sun, 30 Jul 2000 08:44:06 +0000 (08:44 +0000)
committerTim Janik <timj@src.gnome.org>
Sun, 30 Jul 2000 08:44:06 +0000 (08:44 +0000)
Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>

        * gmain.c (g_get_current_time): fix tor's recent changes which
        got rid of a required variable in the non-windows path.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gmain.c
gmain.c

index b77004d..c2afe46 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
+
+       * gmain.c (g_get_current_time): fix tor's recent changes which
+       got rid of a required variable in the non-windows path.
+
 2000-07-30  Tor Lillqvist  <tml@iki.fi>
 
        Finally, a new and improved IO Channel and condition watch
index b77004d..c2afe46 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
+
+       * gmain.c (g_get_current_time): fix tor's recent changes which
+       got rid of a required variable in the non-windows path.
+
 2000-07-30  Tor Lillqvist  <tml@iki.fi>
 
        Finally, a new and improved IO Channel and condition watch
index b77004d..c2afe46 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
+
+       * gmain.c (g_get_current_time): fix tor's recent changes which
+       got rid of a required variable in the non-windows path.
+
 2000-07-30  Tor Lillqvist  <tml@iki.fi>
 
        Finally, a new and improved IO Channel and condition watch
index b77004d..c2afe46 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
+
+       * gmain.c (g_get_current_time): fix tor's recent changes which
+       got rid of a required variable in the non-windows path.
+
 2000-07-30  Tor Lillqvist  <tml@iki.fi>
 
        Finally, a new and improved IO Channel and condition watch
index b77004d..c2afe46 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
+
+       * gmain.c (g_get_current_time): fix tor's recent changes which
+       got rid of a required variable in the non-windows path.
+
 2000-07-30  Tor Lillqvist  <tml@iki.fi>
 
        Finally, a new and improved IO Channel and condition watch
index b77004d..c2afe46 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
+
+       * gmain.c (g_get_current_time): fix tor's recent changes which
+       got rid of a required variable in the non-windows path.
+
 2000-07-30  Tor Lillqvist  <tml@iki.fi>
 
        Finally, a new and improved IO Channel and condition watch
index b77004d..c2afe46 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
+
+       * gmain.c (g_get_current_time): fix tor's recent changes which
+       got rid of a required variable in the non-windows path.
+
 2000-07-30  Tor Lillqvist  <tml@iki.fi>
 
        Finally, a new and improved IO Channel and condition watch
index b77004d..c2afe46 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
+
+       * gmain.c (g_get_current_time): fix tor's recent changes which
+       got rid of a required variable in the non-windows path.
+
 2000-07-30  Tor Lillqvist  <tml@iki.fi>
 
        Finally, a new and improved IO Channel and condition watch
index a3404a6..0258570 100644 (file)
@@ -619,6 +619,8 @@ void
 g_get_current_time (GTimeVal *result)
 {
 #ifndef G_OS_WIN32
+  struct timeval r;
+
   g_return_if_fail (result != NULL);
 
   /*this is required on alpha, there the timeval structs are int's
diff --git a/gmain.c b/gmain.c
index a3404a6..0258570 100644 (file)
--- a/gmain.c
+++ b/gmain.c
@@ -619,6 +619,8 @@ void
 g_get_current_time (GTimeVal *result)
 {
 #ifndef G_OS_WIN32
+  struct timeval r;
+
   g_return_if_fail (result != NULL);
 
   /*this is required on alpha, there the timeval structs are int's