diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2013-10-16 20:25:04 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2013-10-16 20:25:04 +0000 |
| commit | 13eb684248511215a761eaa6dd16bdb7d8b055fa (patch) | |
| tree | 9b58ff3ad20a2215f6cf7916c193099c1b6653af /src/livarot/Shape.cpp | |
| parent | cppcheck initialisation (diff) | |
| download | inkscape-13eb684248511215a761eaa6dd16bdb7d8b055fa.tar.gz inkscape-13eb684248511215a761eaa6dd16bdb7d8b055fa.zip | |
cppcheck: printf variable identifier
(bzr r12698)
Diffstat (limited to 'src/livarot/Shape.cpp')
| -rw-r--r-- | src/livarot/Shape.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/livarot/Shape.cpp b/src/livarot/Shape.cpp index 628e0fe9f..ac6c72342 100644 --- a/src/livarot/Shape.cpp +++ b/src/livarot/Shape.cpp @@ -59,10 +59,10 @@ void Shape::Affiche(void) { printf("sh=%p nbPt=%i nbAr=%i\n", this, static_cast<int>(_pts.size()), static_cast<int>(_aretes.size())); // localizing ok for (unsigned int i=0; i<_pts.size(); i++) { - printf("pt %i : x=(%f %f) dI=%i dO=%i\n",i, _pts[i].x[0], _pts[i].x[1], _pts[i].dI, _pts[i].dO); // localizing ok + printf("pt %u : x=(%f %f) dI=%i dO=%i\n",i, _pts[i].x[0], _pts[i].x[1], _pts[i].dI, _pts[i].dO); // localizing ok } for (unsigned int i=0; i<_aretes.size(); i++) { - printf("ar %i : dx=(%f %f) st=%i en=%i\n",i, _aretes[i].dx[0], _aretes[i].dx[1], _aretes[i].st, _aretes[i].en); // localizing ok + printf("ar %u : dx=(%f %f) st=%i en=%i\n",i, _aretes[i].dx[0], _aretes[i].dx[1], _aretes[i].st, _aretes[i].en); // localizing ok } } |
