Skip to content

Commit

Permalink
Swap u8 for (const char *) in unicode test ✅
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeth committed Dec 20, 2023
1 parent 9c57e74 commit 369cb21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/debug/TestGetName/TestGetName.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 369cb21

Please sign in to comment.