Skip to content

Commit fea240f

Browse files
authored
[fix][isal] Change return variable type to match all setting functions (#1244)
Coverity caught issue. Signed-off-by: Greg Tucker <[email protected]>
1 parent 764b51e commit fea240f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/isal/igzip/igzip_inflate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2135,7 +2135,7 @@ int qpl_isal_inflate_set_dict(struct inflate_state* state, uint8_t* dict, uint32
21352135
}
21362136

21372137
int qpl_isal_inflate_stateless(struct inflate_state* state) {
2138-
uint32_t ret = 0;
2138+
int ret = 0;
21392139
uint8_t* start_out = state->next_out;
21402140

21412141
state->read_in = 0;

0 commit comments

Comments
 (0)