This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients h.venev, loewis
Date 2014-03-22.18:27:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395512822.92.0.271897740521.issue21019@psf.upfronthosting.co.za>
In-reply-to
Content
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:~$
History
Date User Action Args
2014-03-22 18:27:02loewissetrecipients: + loewis, h.venev
2014-03-22 18:27:02loewissetmessageid: <1395512822.92.0.271897740521.issue21019@psf.upfronthosting.co.za>
2014-03-22 18:27:02loewislinkissue21019 messages
2014-03-22 18:27:02loewiscreate