From b3c01226a1cfaf893cbaeff379521d860b92ce1a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 17 Sep 2021 09:05:42 +0200 Subject: [PATCH] dev(ci): fix linter warning count --- core/cli/ci.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cli/ci.el b/core/cli/ci.el index eafe104ca..5a308237f 100644 --- a/core/cli/ci.el +++ b/core/cli/ci.el @@ -254,7 +254,7 @@ (dolist (e (reverse warnings)) (print! (warn "%s" e)))))))) (when (> warnings? 0) - (print! (warn "Warnings: %d") errors?)) + (print! (warn "Warnings: %d") warnings?)) (when (> errors? 0) (print! (error "Failures: %d") errors?)) (if (not (or (> errors? 0) (> warnings? 0)))