diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-11-01 09:55:26 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-11-01 10:13:30 +0100 |
commit | 72f3a54725f0a516ee5d47e3ec60f962c3373797 (patch) | |
tree | f92b46ac0ef3be77a7b7230a9368c2dd92a70f7a /textwindow.c | |
parent | 2f97c691627fa7c5c336dbf99a55374698f5f65f (diff) | |
download | skin-nopacity-72f3a54725f0a516ee5d47e3ec60f962c3373797.tar.gz skin-nopacity-72f3a54725f0a516ee5d47e3ec60f962c3373797.tar.bz2 |
Eliminate some warnings
Diffstat (limited to 'textwindow.c')
-rw-r--r-- | textwindow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textwindow.c b/textwindow.c index efe5dcd..16327ea 100644 --- a/textwindow.c +++ b/textwindow.c @@ -341,7 +341,7 @@ void cNopacityTextWindow::DrawTextWrapperFloat(const char *text, int widthSmall, int y = top; int linesDrawn = 0; bool drawNarrow = true; - for (int i=0; i<flds.size(); i++) { + for (long unsigned int i = 0; i < flds.size(); i++) { if (!flds[i].size()) { //empty line linesDrawn++; |