diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-11-11 19:27:00 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-11-11 19:27:00 +0100 |
| commit | 8d636d931eb4101d15ab74493be2bc762e0f1796 (patch) | |
| tree | 75620eec40ce76073db53f567a794edd696cf5e3 /test/utf8.cxx | |
| parent | 578601f062c9a83abd0d01a73b79aebd057becb6 (diff) | |
Fix Visual Studio compiler warnings
Diffstat (limited to 'test/utf8.cxx')
| -rw-r--r-- | test/utf8.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utf8.cxx b/test/utf8.cxx index f77245597..eab5a547a 100644 --- a/test/utf8.cxx +++ b/test/utf8.cxx @@ -577,7 +577,7 @@ int main(int argc, char** argv) latin1, (unsigned int)strlen(latin1)); utf8[l] = '\0'; strcat(utf8, emoji); - l = strlen(utf8); + l = (int)strlen(utf8); make_font_chooser(); extra_font = FL_TIMES_BOLD_ITALIC; |
