Fix a couple of unused-comparison clang warnings

This commit is contained in:
Jon Trulson
2021-12-12 12:52:14 -07:00
parent 75ea7be520
commit ab409095d6
2 changed files with 2 additions and 2 deletions

View File

@@ -141,7 +141,7 @@ ClosestTick(
* to see if the duration needs to be updated.
*/
if (re->re_duration == RE_NOTSET)
(*res)->res_duration == RE_NOTSET;
(*res)->res_duration = RE_NOTSET;
return closest_tick;
}