summaryrefslogtreecommitdiff
path: root/src/format.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/format.cc')
-rw-r--r--src/format.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format.cc b/src/format.cc
index 69c0b42f..0fcbbdfd 100644
--- a/src/format.cc
+++ b/src/format.cc
@@ -145,7 +145,7 @@ format_t::element_t * format_t::parse_elements(const string& fmt)
++p;
}
- int num = 0;
+ std::size_t num = 0;
while (*p && std::isdigit(*p)) {
num *= 10;
num += *p++ - '0';