From 33fce38f908a528942bc89842fe3c2ea1806ca22 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 9 Jul 2019 16:18:18 +0200 Subject: [PATCH] Fix build in Xcode and GCC. --- Telegram/SourceFiles/base/openssl_help.h | 2 +- Telegram/SourceFiles/core/utils.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/base/openssl_help.h b/Telegram/SourceFiles/base/openssl_help.h index d78734715..b6fdaf520 100644 --- a/Telegram/SourceFiles/base/openssl_help.h +++ b/Telegram/SourceFiles/base/openssl_help.h @@ -450,7 +450,7 @@ inline bytes::vector HmacSha256( bytes::const_span key, bytes::const_span data) { auto result = bytes::vector(kSha256Size); - auto length = unsigned int(kSha256Size); + auto length = (unsigned int)kSha256Size; HMAC( EVP_sha256(), diff --git a/Telegram/SourceFiles/core/utils.cpp b/Telegram/SourceFiles/core/utils.cpp index 8df47f634..fa4828ab0 100644 --- a/Telegram/SourceFiles/core/utils.cpp +++ b/Telegram/SourceFiles/core/utils.cpp @@ -184,8 +184,8 @@ void _initMsgIdConstants() { const auto valid = (size == 16) || (size == 17 && (password[0] == '3') - && ((password[1] >= 'Q') && (password[1] <= 'Z') - || (password[1] >= 'a') && (password[1] <= 'f'))) + && ((password[1] >= 'Q' && password[1] <= 'Z') + || (password[1] >= 'a' && password[1] <= 'f'))) || (size >= 21 && (password[0] == '7') && (password[1] >= 'g')