about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--apps/print-file.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/print-file.mu b/apps/print-file.mu
index a4b90208..29b122a9 100644
--- a/apps/print-file.mu
+++ b/apps/print-file.mu
@@ -29,7 +29,7 @@ $main-body: {
       var in-addr/ecx: (addr buffered-file) <- copy _in-addr
       {
         var c/eax: byte <- read-byte-buffered in-addr
-        compare c, 0xffffffff
+        compare c, 0xffffffff  # EOF marker
         break-if-=
         print-byte c
         loop