summaryrefslogtreecommitdiff
path: root/lib/dbStmt.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dbStmt.h')
-rw-r--r--lib/dbStmt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dbStmt.h b/lib/dbStmt.h
index 44ab62c..a6d4a65 100644
--- a/lib/dbStmt.h
+++ b/lib/dbStmt.h
@@ -26,7 +26,7 @@ namespace MyGrate {
const auto pn = [](const char * c, const char * const e) {
std::size_t n {0};
while (++c != e && *c >= '0' && *c <= '9') {
- n = (n * 10) + (*c - '0');
+ n = (n * 10) + unsigned(*c - '0');
}
return n;
};