about summary refs log tree commit diff stats
path: root/082slurp.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-03 01:36:34 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-03 01:36:34 -0800
commit7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077 (patch)
tree405503a31b48f5c5e13f103efc5762e57b290625 /082slurp.subx
parentc9bda4d13ea33873dd5bce1eef0434cb11763d19 (diff)
downloadmu-7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077.tar.gz
5876 - address -> addr
Diffstat (limited to '082slurp.subx')
-rw-r--r--082slurp.subx2
1 files changed, 1 insertions, 1 deletions
diff --git a/082slurp.subx b/082slurp.subx
index 51fba1e2..11769bc9 100644
--- a/082slurp.subx
+++ b/082slurp.subx
@@ -5,7 +5,7 @@
 
 # read all bytes from 'f' and store them into 's'
 # abort if 's' is too small
-slurp:  # f : (address buffered-file), s : (address stream byte)
+slurp:  # f : (addr buffered-file), s : (addr stream byte)
     # pseudocode:
     #   while true
     #     if (s->write >= s->length) abort