Fix sign compare warning. Closes #2112.

This commit is contained in:
Tobias Rosenkranz 2020-01-15 07:40:22 -05:00 committed by Wilson Snyder
parent 4443ab34fd
commit b41b9417b9
2 changed files with 3 additions and 2 deletions

View File

@ -24,13 +24,14 @@ Lukasz Dalek
Maarten De Braekeleer Maarten De Braekeleer
Matthew Ballance Matthew Ballance
Mike Popoloski Mike Popoloski
Peter Monsson
Patrick Stewart Patrick Stewart
Peter Monsson
Philipp Wagner Philipp Wagner
Pieter Kapsenberg Pieter Kapsenberg
Richard Myers Richard Myers
Sebastien Van Cauwenberghe Sebastien Van Cauwenberghe
Stefan Wallentowitz Stefan Wallentowitz
Tobias Rosenkranz
Todd Strader Todd Strader
Wilson Snyder Wilson Snyder
Yutetsu TAKATSUKASA Yutetsu TAKATSUKASA

View File

@ -619,7 +619,7 @@ void _vl_vsformat(std::string& output, const char* formatp, va_list ap) VL_MT_SA
bool inPct = false; bool inPct = false;
bool widthSet = false; bool widthSet = false;
bool left = false; bool left = false;
int width = 0; size_t width = 0;
for (const char* pos = formatp; *pos; ++pos) { for (const char* pos = formatp; *pos; ++pos) {
if (!inPct && pos[0]=='%') { if (!inPct && pos[0]=='%') {
pctp = pos; pctp = pos;