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 b77004ddf07fcc1c4e25d6a9a99e2dbe3a110204..c2afe466bbaaaf585235f765a9bff4525bcf5149 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 b77004ddf07fcc1c4e25d6a9a99e2dbe3a110204..c2afe466bbaaaf585235f765a9bff4525bcf5149 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 b77004ddf07fcc1c4e25d6a9a99e2dbe3a110204..c2afe466bbaaaf585235f765a9bff4525bcf5149 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 b77004ddf07fcc1c4e25d6a9a99e2dbe3a110204..c2afe466bbaaaf585235f765a9bff4525bcf5149 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 b77004ddf07fcc1c4e25d6a9a99e2dbe3a110204..c2afe466bbaaaf585235f765a9bff4525bcf5149 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 b77004ddf07fcc1c4e25d6a9a99e2dbe3a110204..c2afe466bbaaaf585235f765a9bff4525bcf5149 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 b77004ddf07fcc1c4e25d6a9a99e2dbe3a110204..c2afe466bbaaaf585235f765a9bff4525bcf5149 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 b77004ddf07fcc1c4e25d6a9a99e2dbe3a110204..c2afe466bbaaaf585235f765a9bff4525bcf5149 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 a3404a6e949507e6b04689e75c7661da92e7f71b..0258570f3cc5f1232c80cd19aae790441790a80f 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 a3404a6e949507e6b04689e75c7661da92e7f71b..0258570f3cc5f1232c80cd19aae790441790a80f 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