On Thu, 8 Sep 2005, Paul Eggert wrote: > [EMAIL PROTECTED] writes: > > > in data/glr-regression.at a cast at the malloc() > > seems to be missing. g++ 3.3.4 complained, should be: > > char *value = (char *) malloc (strlen (parent) + strlen (child) + sizeof > > format); > > char *value = (char *) malloc (strlen (s1.ptr) + strlen (s2.ptr) + > > Thanks. I guess g++ 4.0.1 doesn't complain any more? Weird. Anyway,
I believe this is a C vs. C++ difference not a g++ version difference. Joel
