1
0
mirror of https://github.com/moparisthebest/curl synced 2025-01-11 14:08:07 -05:00

unit1651: Fixed conversion compilation warning

371:17: warning: conversion to 'unsigned char' from 'int' may alter its
        value [-Wconversion]

Closes #5008
This commit is contained in:
Steve Holme 2020-03-01 02:43:28 +00:00
parent cdcc9df182
commit cf1466bd47
No known key found for this signature in database
GPG Key ID: 4059CB85CA7E8F19

View File

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 2018 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 2018 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -368,7 +368,7 @@ UNITTEST_START
for(byte = 1 ; byte < 255; byte += 17) { for(byte = 1 ; byte < 255; byte += 17) {
for(i = 0; i < 45; i++) { for(i = 0; i < 45; i++) {
char backup = cert[i]; char backup = cert[i];
cert[i] = (unsigned char)byte&0xff; cert[i] = (unsigned char) (byte & 0xff);
(void) Curl_extract_certinfo(&conn, 0, beg, end); (void) Curl_extract_certinfo(&conn, 0, beg, end);
cert[i] = backup; cert[i] = backup;
} }