diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-08-23 22:11:31 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-08-23 23:05:16 +0200 |
commit | 68193624d1428836b18e93306f96e78706e082c3 (patch) | |
tree | 067eae0a6418fd71af8156d539e07ab917884fed /guix | |
parent | a8c8f6fe916d67cfc254527a987011146d8243df (diff) |
lint: Avoid calls to 'package-field-location' with #f as the field.
* guix/lint.scm (%make-warning): Call 'package-field-location' only when
FIELD is true.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/lint.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/lint.scm b/guix/lint.scm index 71ce931964..4a6abe4275 100644 --- a/guix/lint.scm +++ b/guix/lint.scm @@ -139,7 +139,7 @@ message-text message-data (or location - (package-field-location package field) + (and field (package-field-location package field)) (package-location package)))) (define-syntax make-warning |