about summary refs log tree commit diff stats
path: root/linux/apps/print-file.mu
diff options
context:
space:
mode:
Diffstat (limited to 'linux/apps/print-file.mu')
-rw-r--r--linux/apps/print-file.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/apps/print-file.mu b/linux/apps/print-file.mu
index 75ce2e39..284b805e 100644
--- a/linux/apps/print-file.mu
+++ b/linux/apps/print-file.mu
@@ -30,8 +30,8 @@ fn main _args: (addr array addr array byte) -> _/ebx: int {
       var c/eax: byte <- read-byte-buffered in-addr
       compare c, 0xffffffff/end-of-file
       break-if-=
-      var g/eax: grapheme <- copy c
-      print-grapheme 0/screen, g
+      var g/eax: code-point-utf8 <- copy c
+      print-code-point-utf8 0/screen, g
       loop
     }
   }