From 7a29fb6dd77922e179300a458949bc22280bdb34 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Sep 2006 15:03:06 +0000 Subject: r18096: try to make tcc happy and don't the same struct names in a global and a local scope metze (This used to be commit b787259365eb3dbbc5e8a82a95f0beeea0015682) --- source4/lib/talloc/testsuite.c | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'source4') diff --git a/source4/lib/talloc/testsuite.c b/source4/lib/talloc/testsuite.c index ae533399bc..766cf039c0 100644 --- a/source4/lib/talloc/testsuite.c +++ b/source4/lib/talloc/testsuite.c @@ -609,23 +609,19 @@ static BOOL test_realloc(void) return True; } -struct el2 { - const char *name; -}; - -struct el1 { - int count; - struct el2 **list, **list2, **list3; -}; - /* test realloc with a child */ static BOOL test_realloc_child(void) { void *root; - struct el1 *el1; - struct el2 *el2; + struct el2 { + const char *name; + } *el2; + struct el1 { + int count; + struct el2 **list, **list2, **list3; + } *el1; printf("TESTING REALLOC WITH CHILD\n"); -- cgit