aboutsummaryrefslogtreecommitdiff
path: root/pnm/read.scm
diff options
context:
space:
mode:
Diffstat (limited to 'pnm/read.scm')
-rw-r--r--pnm/read.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/pnm/read.scm b/pnm/read.scm
index 42ded91..a2e0555 100644
--- a/pnm/read.scm
+++ b/pnm/read.scm
@@ -71,7 +71,7 @@
(pbm-image (make-pbm-image width height)))
(read-text-raster width height #f in
(lambda (x y v)
- (image-pixel-set! pbm-image x y (= v 1)))
+ (image-set! pbm-image x y (= v 1)))
unexpected-eof-error
unexpected-character-error)
pbm-image))