diff options
author | Colin Okay <okay@toyful.space> | 2020-03-17 08:18:19 -0500 |
---|---|---|
committer | Colin Okay <cbeok@protonmail.com> | 2020-10-12 09:37:42 -0500 |
commit | 31d1628a25895f99ecc2d3ba4dfcba907a0b0e68 (patch) | |
tree | 5d17428ce2eef488312bb79a1a344b21086a131b /imbricate.ros | |
parent | d748f33b5e66e48aa6ffc051404f0662ee2aa796 (diff) |
read-image to read-png
Diffstat (limited to 'imbricate.ros')
-rwxr-xr-x | imbricate.ros | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imbricate.ros b/imbricate.ros index 2693a3b..4683fe2 100755 --- a/imbricate.ros +++ b/imbricate.ros @@ -32,7 +32,7 @@ exec ros -Q -- $0 "$@" (defvar *bad-images* '()) (defun safe-open-image (path) - (handler-case (imago:read-image (format nil "~a" path)) + (handler-case (imago:read-png (format nil "~a" path)) (error (c) (push path *bad-images*) nil))) |