mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-03 14:42:10 +01:00
C89 fixes (#515892)
2008-02-12 Alexander Larsson <alexl@redhat.com> * tests/live-g-file.c: C89 fixes (#515892) svn path=/trunk/; revision=6506
This commit is contained in:
parent
fa206b48be
commit
767e18bf82
@ -1,3 +1,8 @@
|
|||||||
|
2008-02-12 Alexander Larsson <alexl@redhat.com>
|
||||||
|
|
||||||
|
* tests/live-g-file.c:
|
||||||
|
C89 fixes (#515892)
|
||||||
|
|
||||||
2008-02-11 Matthias Clasen <mclasen@redhat.com>
|
2008-02-11 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* === Released 2.15.5 ===
|
* === Released 2.15.5 ===
|
||||||
|
@ -1076,12 +1076,6 @@ main (int argc, char *argv[])
|
|||||||
GError *error;
|
GError *error;
|
||||||
GOptionContext *context;
|
GOptionContext *context;
|
||||||
|
|
||||||
verbose = FALSE;
|
|
||||||
write_test = FALSE;
|
|
||||||
create_struct = FALSE;
|
|
||||||
target_path = NULL;
|
|
||||||
posix_compat = FALSE;
|
|
||||||
|
|
||||||
static GOptionEntry cmd_entries[] = {
|
static GOptionEntry cmd_entries[] = {
|
||||||
{"read-write", 'w', 0, G_OPTION_ARG_NONE, &write_test,
|
{"read-write", 'w', 0, G_OPTION_ARG_NONE, &write_test,
|
||||||
"Perform write tests (incl. structure creation)", NULL},
|
"Perform write tests (incl. structure creation)", NULL},
|
||||||
@ -1093,6 +1087,12 @@ main (int argc, char *argv[])
|
|||||||
{NULL}
|
{NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
verbose = FALSE;
|
||||||
|
write_test = FALSE;
|
||||||
|
create_struct = FALSE;
|
||||||
|
target_path = NULL;
|
||||||
|
posix_compat = FALSE;
|
||||||
|
|
||||||
/* strip all gtester-specific args */
|
/* strip all gtester-specific args */
|
||||||
g_type_init ();
|
g_type_init ();
|
||||||
g_test_init (&argc, &argv, NULL);
|
g_test_init (&argc, &argv, NULL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user