From: Matthew Penney <[email protected]> Modern compilers warn that the result of strstr() may discard const qualifiers when assigned to a non-const pointer.
Make 'found' a const char * to fix the warning. Signed-off-by: Matthew Penney <[email protected]> Reviewed-by: Marc-André Lureau <[email protected]> Reviewed-by: Thomas Huth <[email protected]> Tested-by: Thomas Huth <[email protected]> Tested-by: Philippe Mathieu-Daudé <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Message-ID: <[email protected]> Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- tests/qtest/libqtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qtest/libqtest.c b/tests/qtest/libqtest.c index bf9284b9a13..b1e06ea364e 100644 --- a/tests/qtest/libqtest.c +++ b/tests/qtest/libqtest.c @@ -2146,7 +2146,7 @@ bool mkimg(const char *file, const char *fmt, unsigned size_mb) bool qtest_verbose(const char *domain) { const char *log = getenv("QTEST_LOG"); - char *found; + const char *found; assert(domain); -- 2.53.0
