From: Long Qin Date: Tue, 7 Nov 2017 06:59:20 +0000 (+0800) Subject: lhash.c: Replace Unicode EN DASH with the ASCII char '-'. X-Git-Tag: OpenSSL_1_0_2n~12 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=45a58b161bca9966b2295e91c31869a45448baf1;p=oweals%2Fopenssl.git lhash.c: Replace Unicode EN DASH with the ASCII char '-'. * addressing", Proc. 6th Conference on Very Large Databases: 212–223 ^ The EN DASH ('–') in this line is one UTF-8 character (hex: e2 80 93). Under some code page setting (e.g. 936), Visual Studio may report C4819 warning: The file contains a character that cannot be represented in the current code page. Replace this character with the ASCII char '-' (Hex Code: 2D). Reviewed-by: Tim Hudson Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/4691) (cherry picked from commit b4d0fa49d9d1a43792e58b0c8066bb23b9e53ef4) --- diff --git a/crypto/lhash/lhash.c b/crypto/lhash/lhash.c index f379887259..51bb258e74 100644 --- a/crypto/lhash/lhash.c +++ b/crypto/lhash/lhash.c @@ -107,7 +107,7 @@ * https://en.wikipedia.org/wiki/Linear_hashing * * Litwin, Witold (1980), "Linear hashing: A new tool for file and table - * addressing", Proc. 6th Conference on Very Large Databases: 212–223 + * addressing", Proc. 6th Conference on Very Large Databases: 212-223 * http://hackthology.com/pdfs/Litwin-1980-Linear_Hashing.pdf * * From the wikipedia article "Linear hashing is used in the BDB Berkeley