On Mon, 18 Jun 2012 06:47:22 +0200 Roland Mainz wrote: > Erm... I stumbled over the following macro in src/lib/libjcl/parse.c: > -- snip -- > #define DDLIB(s) > (streq(name,"JCLLIB")||streq(name,"JOBLIB")||streq(name,"PROCLIB") > -- snip --
> AFAIK this should be... > -- snip -- > #define DDLIB(s) > (streq((s),"JCLLIB")||streq((s),"JOBLIB")||streq((s),"PROCLIB") > -- snip -- > ... right ? yes, good catch (your snip cut off the trailing ``)'' an that threw me off) it didn't cause a compilation problem because the only 2 places its used had the id ``name'' as the argument _______________________________________________ ast-developers mailing list [email protected] https://mailman.research.att.com/mailman/listinfo/ast-developers
