Skip to content

Commit a937f72

Browse files
committed
auto format
1 parent a769a3d commit a937f72

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

core/iwasm/interpreter/wasm_loader.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -10800,8 +10800,9 @@ wasm_loader_prepare_bytecode(WASMModule *module, WASMFunction *func,
1080010800

1080110801
for (n = 0; n < cell_num; n++) {
1080210802
if (loader_ctx->p_code_compiled == NULL) {
10803-
if (!check_offset_push(loader_ctx, error_buf,
10804-
error_buf_size))
10803+
if (!check_offset_push(loader_ctx,
10804+
error_buf,
10805+
error_buf_size))
1080510806
goto fail;
1080610807
}
1080710808
*loader_ctx->frame_offset++ = 0;

core/iwasm/interpreter/wasm_mini_loader.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -5935,8 +5935,9 @@ wasm_loader_prepare_bytecode(WASMModule *module, WASMFunction *func,
59355935

59365936
for (n = 0; n < cell_num; n++) {
59375937
if (loader_ctx->p_code_compiled == NULL) {
5938-
if (!check_offset_push(loader_ctx, error_buf,
5939-
error_buf_size))
5938+
if (!check_offset_push(loader_ctx,
5939+
error_buf,
5940+
error_buf_size))
59405941
goto fail;
59415942
}
59425943
*loader_ctx->frame_offset++ = 0;

0 commit comments

Comments
 (0)