libqcdm: remove useless checks on always true condition

result.c: In function ‘qcdm_result_add_u8_array’:
result.c:338:36: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits]
     qcdm_return_if_fail (array_len >= 0);

result.c: In function ‘qcdm_result_add_u16_array’:
result.c:418:36: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits]
     qcdm_return_if_fail (array_len >= 0);
                                    ^
This commit is contained in:
Ben Chan
2018-10-26 23:00:06 -07:00
committed by Aleksander Morgado
parent 737eff557d
commit aa85aeae3d

View File

@@ -335,7 +335,6 @@ qcdm_result_add_u8_array (QcdmResult *r,
qcdm_return_if_fail (r->refcount > 0);
qcdm_return_if_fail (key != NULL);
qcdm_return_if_fail (array != NULL);
qcdm_return_if_fail (array_len >= 0);
v = val_new_u8_array (key, array, array_len);
qcdm_return_if_fail (v != NULL);
@@ -415,7 +414,6 @@ qcdm_result_add_u16_array (QcdmResult *r,
qcdm_return_if_fail (r->refcount > 0);
qcdm_return_if_fail (key != NULL);
qcdm_return_if_fail (array != NULL);
qcdm_return_if_fail (array_len >= 0);
v = val_new_u16_array (key, array, array_len);
qcdm_return_if_fail (v != NULL);