From e0249827b3fa81ff6c59fb14ef85d38361dd5e31 Mon Sep 17 00:00:00 2001 From: Patrick Steuer Date: Thu, 15 Aug 2019 23:13:53 +0200 Subject: [PATCH] Fix --strict-warnings build Appease -Wstring-plus-int. Signed-off-by: Patrick Steuer Reviewed-by: Kurt Roeckx Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/9608) --- test/test_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_test.c b/test/test_test.c index ba66a158ad..35c612726f 100644 --- a/test/test_test.c +++ b/test/test_test.c @@ -491,7 +491,7 @@ static int test_single_eval(void) && TEST_ptr_eq(p, buf + 1) && TEST_ptr_null(p = NULL) /* strings */ - && TEST_str_eq(p = "123456" + 1, "23456") + && TEST_str_eq(p = &("123456"[1]), "23456") && TEST_str_eq("3456", ++p) && TEST_str_ne(p++, "456") /* memory */ -- 2.25.1