Skip to content

Commit ebf1404

Browse files
authored
wasi_nn_openvino.c: avoid self-assignment warning (#4434)
1 parent c7148a6 commit ebf1404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

146-
ov_error = ov_error;
146+
(void)ov_error;
147147
fail:
148148
if (friendly_name)
149149
ov_free(friendly_name);

0 commit comments

Comments
 (0)