about summary refs log tree commit diff stats
path: root/linux/407right-justify.mu
diff options
context:
space:
mode:
Diffstat (limited to 'linux/407right-justify.mu')
-rw-r--r--linux/407right-justify.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/407right-justify.mu b/linux/407right-justify.mu
index b7322ae5..aa767782 100644
--- a/linux/407right-justify.mu
+++ b/linux/407right-justify.mu
@@ -6,7 +6,7 @@ fn print-int32-decimal-right-justified screen: (addr screen), n: int, _width: in
   {
     compare n-width, width
     break-if->=
-    print-grapheme screen, 0x20/space
+    print-code-point-utf8 screen, 0x20/space
     width <- decrement
     loop
   }