aboutsummaryrefslogtreecommitdiff
path: root/scripts/guix-build-coordinator.in
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-10-22 10:03:34 +0100
committerChristopher Baines <mail@cbaines.net>2022-10-22 10:03:34 +0100
commit6cd8bd854332301edef6eee68080881b8349d768 (patch)
treee9f486fa7af1f259cfb9105f0ccfd42da007e5b8 /scripts/guix-build-coordinator.in
parent64d14ab709fe02bb7bcfebbfe4304af781811b43 (diff)
downloadbuild-coordinator-6cd8bd854332301edef6eee68080881b8349d768.tar
build-coordinator-6cd8bd854332301edef6eee68080881b8349d768.tar.gz
Switch to using = for testing numerical equality
As I think I've been abusing eq?.
Diffstat (limited to 'scripts/guix-build-coordinator.in')
-rw-r--r--scripts/guix-build-coordinator.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/guix-build-coordinator.in b/scripts/guix-build-coordinator.in
index 17c8385..e97134e 100644
--- a/scripts/guix-build-coordinator.in
+++ b/scripts/guix-build-coordinator.in
@@ -892,7 +892,7 @@ tags:
(simple-format #t " derived priority: ~A\n"
(assoc-ref build "derived_priority"))
(let ((tags (assoc-ref build "tags")))
- (unless (eq? 0 (vector-length tags))
+ (unless (= 0 (vector-length tags))
(simple-format #t " tags:\n")
(vector-for-each
(lambda (_ tag)