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
Matthew Ballance
Mike Popoloski
Peter Monsson
Patrick Stewart
Peter Monsson
Philipp Wagner
Pieter Kapsenberg
Richard Myers
Sebastien Van Cauwenberghe
Stefan Wallentowitz
Tobias Rosenkranz
Todd Strader
Wilson Snyder
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 widthSet = false;
bool left = false;
int width = 0;
size_t width = 0;
for (const char* pos = formatp; *pos; ++pos) {
if (!inPct && pos[0]=='%') {
pctp = pos;