From: Stefan Metzmacher Date: Tue, 5 Sep 2006 15:28:28 +0000 (+0000) Subject: r18099: merge from samba4 to make tcc happy as the same struct name was used in multiple X-Git-Tag: samba-4.0.0alpha6~801^2~7717 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=458a3ff20c72d8634ee8f8af4bf1d6daabb7c788;p=thirdparty%2Fsamba.git r18099: merge from samba4 to make tcc happy as the same struct name was used in multiple places and that only works if they're all in a local scope metze (This used to be commit 027c7964eeb658d47e4aa2b974cc0c6089dbdba0) --- diff --git a/source3/lib/talloctort.c b/source3/lib/talloctort.c index ae533399bc6..766cf039c0e 100644 --- a/source3/lib/talloctort.c +++ b/source3/lib/talloctort.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");