From: Joan Lledó Date: Sun, 31 May 2020 07:15:36 +0000 (+0200) Subject: Hurd: Fix multiline strings X-Git-Tag: v3.8.0~115^2~2 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=672b16511bd4f022926c3714fc1a4cbffaca8605;p=pciutils.git Hurd: Fix multiline strings --- 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);