🐛 Lille bugfix

This commit is contained in:
Nikolaj
2021-09-16 16:00:34 +02:00
parent cc9365965e
commit 5ba5514314

View File

@ -130,7 +130,7 @@ int main(int argc, char* argv[]) {
} else if (is_iso8859(f)) {
fprintf(stdout, "%s: ISO-8859 text\n", argv[1]);
} else if (is_utf8(f)) {
fprintf(stdout, "%s: UTF-8 Unicode text\n", argv[1]);
fprintf(stdout, "%s: Unicode text, UTF-8 text\n", argv[1]);
} else {
fprintf(stdout, "%s: data\n", argv[1]);
}