Skip to content

Commit 22e41db

Browse files
committed
Corrected errors.
Signed-off-by: Rachel Green <[email protected]>
1 parent 2390090 commit 22e41db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/wasmtime/wasmtime.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ class Wasmtime : public WasmVm {
118118
};
119119

120120
void Wasmtime::initStore() {
121-
if (store_ != nullptr)
121+
if (store_ != nullptr) {
122122
return;
123-
}
124-
store_ = wasm_store_new(engine());
123+
}
124+
store_ = wasm_store_new(engine());
125125
}
126126

127127
bool Wasmtime::load(std::string_view bytecode, std::string_view /*precompiled*/,

0 commit comments

Comments
 (0)