From 672b16511bd4f022926c3714fc1a4cbffaca8605 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Joan=20Lled=C3=B3?= Date: Sun, 31 May 2020 09:15:36 +0200 Subject: [PATCH] Hurd: Fix multiline strings --- lib/hurd.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/hurd.c b/lib/hurd.c index 9993c54..389ca33 100644 --- a/lib/hurd.c +++ b/lib/hurd.c @@ -141,8 +141,8 @@ enum_devices(const char *parent, struct pci_access *a, int domain, int bus, if (closedir(dir) < 0) a->warning("Cannot close directory: %s (%s)", parent, strerror(errno)); - a->error("Wrong directory name: %s (number expected) probably \ - not connected to an arbiter", entry->d_name); + a->error("Wrong directory name: %s (number expected) probably " + "not connected to an arbiter", entry->d_name); } /* @@ -167,8 +167,7 @@ enum_devices(const char *parent, struct pci_access *a, int domain, int bus, if (closedir(dir) < 0) a->warning("Cannot close directory: %s (%s)", parent, strerror(errno)); - a->error("Wrong directory tree, probably not connected \ - to an arbiter"); + a->error("Wrong directory tree, probably not connected to an arbiter"); } enum_devices(path, a, domain, bus, dev, func, lev + 1); -- 2.39.2