Skip to content

Commit b352a5a

Browse files
committed
wasi_nn_openvino.c: avoid self-assignment warning
1 parent 4fbb372 commit b352a5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/iwasm/libraries/wasi-nn/src/wasi_nn_openvino.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ print_model_input_output_info(ov_model_t *model)
144144
output_port = NULL;
145145
}
146146

147-
ov_error = ov_error;
147+
(void)ov_error;
148148
fail:
149149
if (friendly_name)
150150
ov_free(friendly_name);

0 commit comments

Comments
 (0)