From 5ba5514314a11634bb624586d93a1cffea33f9ac Mon Sep 17 00:00:00 2001 From: Nikolaj Date: Thu, 16 Sep 2021 16:00:34 +0200 Subject: [PATCH] :bug: Lille bugfix --- A0/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/A0/file.c b/A0/file.c index 24cda25..ddce3e1 100644 --- a/A0/file.c +++ b/A0/file.c @@ -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]); }