BF: Avoid implicit downcast from int64_t to int
This MR fixes an implicit downcast that can cause compilation failure (see this build log for an example).
The NEWIMAGE::volume::*size
methods return type int64_t
, whereas the code in the fnirt_clp
function is assigning the return value to a variable of type int
.
@mwebster mind taking a quick look at this?