From: Richard Levitte Date: Sat, 30 Jan 2016 14:39:34 +0000 (+0100) Subject: Fix opt_imax() call X-Git-Tag: OpenSSL_1_1_0-pre3~361 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=33254e1c6fa6a1acf28fd0d9b6dc4ee30e569b95;hp=33254e1c6fa6a1acf28fd0d9b6dc4ee30e569b95 Fix opt_imax() call Not all architectures have a time_t defined the same way. To make sure we get the same result, we need to cast &checkoffset to (intmax_t *) and make sure that intmax_t is defined somehow. To make really sure we don't pass a variable with the wrong size down to opt_imax(), we use a temporary intmax_t. Reviewed-by: Rich Salz ---