Martin v. Löwis added the comment:

I still can't reproduce the problem, not even with -Werror:

loewis@dinsdale:~$ cat a.c
struct Foo{
  char *text;
};

struct Foo f = {
  "data"
};

int main()
{
  return 0;
}

loewis@dinsdale:~$ gcc -Wall -Werror -o a a.c
loewis@dinsdale:~$ gcc --version
gcc (Debian 4.7.2-5) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

loewis@dinsdale:~$

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue21019>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to