diff options
author | Patrik Nyblom <[email protected]> | 2011-12-08 14:35:37 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2011-12-08 16:35:08 +0100 |
commit | 0bc41116c9bb4e0a2958b99c539d64a7ee068a0e (patch) | |
tree | 04940cb0fb8ad92282f078e0de503b5b9e0e34e5 /erts/emulator/beam/erl_alloc.c | |
parent | 6cd08b5fc2e2b34dba816735ae1864bf68362791 (diff) | |
download | otp-0bc41116c9bb4e0a2958b99c539d64a7ee068a0e.tar.gz otp-0bc41116c9bb4e0a2958b99c539d64a7ee068a0e.tar.bz2 otp-0bc41116c9bb4e0a2958b99c539d64a7ee068a0e.zip |
Make erl_alloc.c use correct strtol variant on windows
Diffstat (limited to 'erts/emulator/beam/erl_alloc.c')
-rw-r--r-- | erts/emulator/beam/erl_alloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/beam/erl_alloc.c b/erts/emulator/beam/erl_alloc.c index 1e75afe6f6..4d02a67d54 100644 --- a/erts/emulator/beam/erl_alloc.c +++ b/erts/emulator/beam/erl_alloc.c @@ -1095,7 +1095,7 @@ get_kb_value(char *param_end, char** argv, int* ip) char *param = argv[*ip]+1; char *value = get_value(param_end, argv, ip); errno = 0; - tmp = (Sint) strtol(value, &rest, 10); + tmp = (Sint) ErtsStrToSint(value, &rest, 10); if (errno != 0 || rest == value || tmp < 0 || max < ((Uint) tmp)) bad_value(param, param_end, value); if (max == (Uint) tmp) @@ -1112,7 +1112,7 @@ get_byte_value(char *param_end, char** argv, int* ip) char *param = argv[*ip]+1; char *value = get_value(param_end, argv, ip); errno = 0; - tmp = (Sint) strtol(value, &rest, 10); + tmp = (Sint) ErtsStrToSint(value, &rest, 10); if (errno != 0 || rest == value || tmp < 0) bad_value(param, param_end, value); return (Uint) tmp; @@ -1126,7 +1126,7 @@ get_amount_value(char *param_end, char** argv, int* ip) char *param = argv[*ip]+1; char *value = get_value(param_end, argv, ip); errno = 0; - tmp = (Sint) strtol(value, &rest, 10); + tmp = (Sint) ErtsStrToSint(value, &rest, 10); if (errno != 0 || rest == value || tmp < 0) bad_value(param, param_end, value); return (Uint) tmp; |