diff options
author | Chih-Hung Hsieh <chh@google.com> | 2016-04-18 20:30:55 +0200 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2016-04-18 21:29:30 +0200 |
commit | 54a2747ef305c10d07d8db393125dbcbb461c428 (patch) | |
tree | ad6f90bea569c5f01bbf9485e356dcdb035d79c5 /edify | |
parent | Merge "Fix IWYU errors." (diff) | |
download | android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.gz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.bz2 android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.lz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.xz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.zst android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.zip |
Diffstat (limited to '')
-rw-r--r-- | edify/expr.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/edify/expr.cpp b/edify/expr.cpp index cd1e08726..c34342f76 100644 --- a/edify/expr.cpp +++ b/edify/expr.cpp @@ -286,13 +286,14 @@ Value* LessThanIntFn(const char* name, State* state, int argc, Expr* argv[]) { bool result = false; char* end; - long l_int = strtol(left, &end, 10); + // Parse up to at least long long or 64-bit integers. + int64_t l_int = static_cast<int64_t>(strtoll(left, &end, 10)); if (left[0] == '\0' || *end != '\0') { goto done; } - long r_int; - r_int = strtol(right, &end, 10); + int64_t r_int; + r_int = static_cast<int64_t>(strtoll(right, &end, 10)); if (right[0] == '\0' || *end != '\0') { goto done; } |