and forgotten from backports
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@605073
13f79535-47bb-0310-9956-
ffa450edef68
int printing = 0;
int shift = sizeof(apr_uint64_t) * 8 - 4;
do {
- unsigned short next_digit = ((u >> shift) & (apr_uint64_t)0xf);
+ unsigned short next_digit = (unsigned short)
+ ((u >> shift) & (apr_uint64_t)0xf);
if (next_digit) {
*next++ = HEX_DIGITS[next_digit];
printing = 1;
SSL_set_connect_state(c->ssl);
if (verbosity >= 4) {
BIO_set_callback(bio, ssl_print_cb);
- BIO_set_callback_arg(bio, bio_err);
+ BIO_set_callback_arg(bio, (void *)bio_err);
}
} else {
c->ssl = NULL;