summaryrefslogtreecommitdiff
path: root/src/wasm-check.c
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2016-01-05 11:35:13 -0800
committerDerek Schuff <dschuff@chromium.org>2016-01-05 11:35:13 -0800
commit3d9be10028c6c3136c8e98f32c91fae369bd3ed2 (patch)
treeab8aa43d26751ad98f810d789b0ddbcb6b2a445e /src/wasm-check.c
parent0b039cdd94ba166b83a37fcbff3b6d50ae4faf07 (diff)
downloadwabt-3d9be10028c6c3136c8e98f32c91fae369bd3ed2.tar.gz
wabt-3d9be10028c6c3136c8e98f32c91fae369bd3ed2.tar.bz2
wabt-3d9be10028c6c3136c8e98f32c91fae369bd3ed2.zip
Rename wasm_export to export_
Diffstat (limited to 'src/wasm-check.c')
-rw-r--r--src/wasm-check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-check.c b/src/wasm-check.c
index fb33d1e0..09b904ee 100644
--- a/src/wasm-check.c
+++ b/src/wasm-check.c
@@ -843,7 +843,7 @@ static WasmResult check_module(WasmCheckContext* ctx, WasmModule* module) {
result |= check_import(ctx, module, &field->loc, &field->import);
break;
case WASM_MODULE_FIELD_TYPE_EXPORT:
- result |= check_export(ctx, module, &field->wasm_export);
+ result |= check_export(ctx, module, &field->export_);
break;
case WASM_MODULE_FIELD_TYPE_TABLE:
if (seen_table) {