Remove a variable that is set but not used
This fixes warnings when building with the top of tree version of clang:
tools/input/ivf.c:69:12: warning: variable 'res' set but not used [-Wunused-but-set-variable]
Alternatively, a (void)res
cast also marks the variable as used,
silencing the same warning.
Edited by Martin Storsjö