summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index 63c69eed..7ad7aeed 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -235,8 +235,8 @@ public:
}
else if (cp and isdigit(*cp))
{
- int new_val = m_params.count * 10 + *cp - '0';
- if (new_val < 0)
+ long long new_val = (long long)m_params.count * 10 + *cp - '0';
+ if (new_val > std::numeric_limits<int>::max())
context().print_status({ "parameter overflowed", get_face("Error") });
else
m_params.count = new_val;