summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wasm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm.h b/src/wasm.h
index 306804c66..b2f28faf0 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -626,10 +626,10 @@ class Load : public Expression {
public:
Load() : Expression(LoadId) {}
- unsigned bytes;
+ uint32_t bytes;
bool signed_;
uint32_t offset;
- unsigned align;
+ uint32_t align;
Expression *ptr;
std::ostream& doPrint(std::ostream &o, unsigned indent) {