fix tor's recent changes which got rid of a required variable in the

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.
This commit is contained in:
Tim Janik 2000-07-30 08:44:06 +00:00 committed by Tim Janik
parent 1860151db0
commit 33efff673a
10 changed files with 44 additions and 0 deletions

View 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> 2000-07-30 Tor Lillqvist <tml@iki.fi>
Finally, a new and improved IO Channel and condition watch Finally, a new and improved IO Channel and condition watch

View 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> 2000-07-30 Tor Lillqvist <tml@iki.fi>
Finally, a new and improved IO Channel and condition watch Finally, a new and improved IO Channel and condition watch

View 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> 2000-07-30 Tor Lillqvist <tml@iki.fi>
Finally, a new and improved IO Channel and condition watch Finally, a new and improved IO Channel and condition watch

View 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> 2000-07-30 Tor Lillqvist <tml@iki.fi>
Finally, a new and improved IO Channel and condition watch Finally, a new and improved IO Channel and condition watch

View 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> 2000-07-30 Tor Lillqvist <tml@iki.fi>
Finally, a new and improved IO Channel and condition watch Finally, a new and improved IO Channel and condition watch

View 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> 2000-07-30 Tor Lillqvist <tml@iki.fi>
Finally, a new and improved IO Channel and condition watch Finally, a new and improved IO Channel and condition watch

View 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> 2000-07-30 Tor Lillqvist <tml@iki.fi>
Finally, a new and improved IO Channel and condition watch Finally, a new and improved IO Channel and condition watch

View 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> 2000-07-30 Tor Lillqvist <tml@iki.fi>
Finally, a new and improved IO Channel and condition watch Finally, a new and improved IO Channel and condition watch

View File

@ -619,6 +619,8 @@ void
g_get_current_time (GTimeVal *result) g_get_current_time (GTimeVal *result)
{ {
#ifndef G_OS_WIN32 #ifndef G_OS_WIN32
struct timeval r;
g_return_if_fail (result != NULL); g_return_if_fail (result != NULL);
/*this is required on alpha, there the timeval structs are int's /*this is required on alpha, there the timeval structs are int's

View File

@ -619,6 +619,8 @@ void
g_get_current_time (GTimeVal *result) g_get_current_time (GTimeVal *result)
{ {
#ifndef G_OS_WIN32 #ifndef G_OS_WIN32
struct timeval r;
g_return_if_fail (result != NULL); g_return_if_fail (result != NULL);
/*this is required on alpha, there the timeval structs are int's /*this is required on alpha, there the timeval structs are int's