From 369cb2134cd15f198894a8c132b1d7866a07f0e2 Mon Sep 17 00:00:00 2001 From: tyeth Date: Wed, 20 Dec 2023 16:00:23 +0000 Subject: [PATCH] =?UTF-8?q?Swap=20u8=20for=20(const=20char=20*)=20in=20uni?= =?UTF-8?q?code=20test=20=E2=9C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/debug/TestGetName/TestGetName.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/debug/TestGetName/TestGetName.ino b/examples/debug/TestGetName/TestGetName.ino index 48cfb533..249c55a0 100644 --- a/examples/debug/TestGetName/TestGetName.ino +++ b/examples/debug/TestGetName/TestGetName.ino @@ -5,7 +5,7 @@ const char* name[] = { "SFN.TXT", "LongFilename.txt", #if USE_UTF8_LONG_NAMES - u8"très élégant.txt", + (const char *)"très élégant.txt", #endif // USE_UTF8_LONG_NAMES nullptr}; char buf[32];