[mpir-devel] Re: genperf.c warning

2009-11-02 Thread Jason Moxham
Thanks , I've sent this to the yasm trac ticket 189 On Monday 02 November 2009 23:09:03 Dan Grayson wrote: > This line in genperf.c > > fprintf(out, final.line[i]); > > should be > > fprintf(out, "%s", final.line[i]); > > to prevent a warning from the compiler, and to ensure corr

[mpir-devel] genperf.c warning

2009-11-02 Thread Dan Grayson
This line in genperf.c fprintf(out, final.line[i]); should be fprintf(out, "%s", final.line[i]); to prevent a warning from the compiler, and to ensure correct behavior if lines contain %. --~--~-~--~~~---~--~~ You received this message because yo