libapps + libcrypto: Silence warnings on Win64 builds

Reviewed-by: Saša Nedvědický <sashan@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/27806)
This commit is contained in:
Tomas Mraz
2025-06-11 10:48:01 +02:00
parent 2d978786f3
commit bb86c43fa8
201 changed files with 835 additions and 683 deletions

View File

@@ -20,6 +20,7 @@
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <stddef.h>
#include "uplink.h"
void OPENSSL_showfatal(const char *, ...);
@@ -89,7 +90,7 @@ void OPENSSL_Uplink(volatile void **table, int index)
} else
p = applinktable;
if (index > (int)p[0])
if (index > (intptr_t)p[0])
break;
if (p[index])