diff options
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r-- | src/wasm-s-parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-s-parser.h b/src/wasm-s-parser.h index b8dbdfd69..d50cedd92 100644 --- a/src/wasm-s-parser.h +++ b/src/wasm-s-parser.h @@ -794,7 +794,7 @@ private: if (str[0] == 'a') { ret->align = atoi(eq); } else if (str[0] == 'o') { - ret->offset = atoi(eq); + ret->offset = atol(eq); // XXX https://github.com/WebAssembly/spec/issues/161 } else onError(); i++; } |