diff options
author | Boutade <thegoofist@protonmail.com> | 2020-03-17 08:18:19 -0500 |
---|---|---|
committer | Boutade <thegoofist@protonmail.com> | 2020-03-17 08:18:19 -0500 |
commit | c893d53eced92dc620f64b7fe9c264fea6f07f14 (patch) | |
tree | 5d17428ce2eef488312bb79a1a344b21086a131b /imbricate.ros | |
parent | 4596aa975136d502c6e72a889e2adbf2e9a2172c (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))) |