Skip to content

Commit 043c3d5

Browse files
committed
Fix typo in wasm value comparison
1 parent f160233 commit 043c3d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • language-bindings/python/src/wamr/wasmcapi

language-bindings/python/src/wamr/wasmcapi/ffi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def __compare_wasm_val_t(self, other):
405405
elif WASM_F32 == self.kind:
406406
return self.of.f32 == other.of.f32
407407
elif WASM_F64 == self.kind:
408-
return self.of.f64 == other.of.f63
408+
return self.of.f64 == other.of.f64
409409
elif WASM_EXTERNREF == self.kind:
410410
raise RuntimeError("FIXME")
411411
else:

0 commit comments

Comments
 (0)