summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-09-27 08:21:27 -0400
committerDavid Thompson <dthompson2@worcester.edu>2021-09-27 08:21:27 -0400
commita0bd894bbc01c9897a6dbe4d5da0528f6aa495de (patch)
tree17cb2b1beb26e176a580c8b37c8a8933c7637afd
parente7a60aad528806a0c783189d2ead25340c8f2ed4 (diff)
Fix error reporting when dynamic-link fails.
-rw-r--r--sdl2/config.scm.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdl2/config.scm.in b/sdl2/config.scm.in
index b1343dd..290dd6e 100644
--- a/sdl2/config.scm.in
+++ b/sdl2/config.scm.in
@@ -12,8 +12,8 @@
;; library load path as a fallback method. Useful when restributing
;; relocatable builds.
(define (dynamic-link* names)
- (let loop ((names names))
- (match names
+ (let loop ((names* names))
+ (match names*
(()
(error "could not find library" names))
((name . rest)