mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 15:06:14 +01:00
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:
parent
1860151db0
commit
33efff673a
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
2
gmain.c
2
gmain.c
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user