
11 Jul
2005
11 Jul
'05
6:53 a.m.
On Tue, Jul 05, 2005 at 08:10:35AM +0100, Ben Fowler wrote:
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.
Looks good, please commit it if you haven't already. (Sorry I didn't reply sooner, this msg got lost in my inbox)
Bryce