From 1cd221c9e91f06376e46893e9556112048311428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 4 Jun 2025 12:45:42 +0200 Subject: [PATCH] services: static-networking: Remove use of unbound variable. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use of ‘G_’ was added in 670d985cabf81a28660c4a8024f752decc495dce but it’s actually unbound. * gnu/services/base.scm (network-set-up/linux): Remove uses of ‘G_’, which is unbound. Change-Id: I6e879688ceee2fcb738e5e213cd3d539c9d89e20 --- gnu/services/base.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 1f5da97f0a7..edc6f45850a 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -3355,14 +3355,16 @@ to CONFIG." (apply link-set (link-id link) (alist->keyword+value '#$arguments)) - (format #t (G_ "Interface with name '~a' not found~%") #$name)))) + (format #t "Interface with name '~a' not found~%" + #$name)))) ((string? mac-address) #~(let ((link (match-link-by link-addr #$mac-address))) (if link (apply link-set (link-id link) (alist->keyword+value '#$arguments)) - (format #t (G_ "Interface with mac-address '~a' not found~%") #$mac-address))))))) + (format #t "Interface with mac-address '~a' not found~%" + #$mac-address))))))) links) ;; 'wait-for-link' below could wait forever when