diff options
author | Christopher Baines <mail@cbaines.net> | 2022-10-22 10:03:34 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-10-22 10:03:34 +0100 |
commit | 6cd8bd854332301edef6eee68080881b8349d768 (patch) | |
tree | e9f486fa7af1f259cfb9105f0ccfd42da007e5b8 /scripts | |
parent | 64d14ab709fe02bb7bcfebbfe4304af781811b43 (diff) | |
download | build-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')
-rw-r--r-- | scripts/guix-build-coordinator.in | 2 |
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) |