
On 7/4/05, Bryce Harrington <bryce@...260...> wrote:
On Mon, Jul 04, 2005 at 09:26:02AM +0100, Ben Fowler wrote:
On 7/4/05, Bryce Harrington <bryce@...260...> wrote:
... livarot/float-line.cpp:518: warning: ...
I have patches for these, do you want to see them?
Yes, please do!
This could be a case of needing the modern format specifier for printf, http://unixhelp.ed.ac.uk/CGI/man-cgi?printf+3 videlicet:
Index: livarot/float-line.cpp =================================================================== RCS file: /cvsroot/inkscape/inkscape/src/livarot/float-line.cpp,v retrieving revision 1.8 diff -r1.8 float-line.cpp 518c518 < printf("%lu : \n", bords.size()); ---
printf("%zu : \n", bords.size());
524c524 < printf("%lu : \n", runs.size()); ---
printf("%zu : \n", runs.size());
If you O.K. this, I'll check it it in.
Ben