aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoan Lledó <jlledom@member.fsf.org>2020-05-31 09:15:36 +0200
committerJoan Lledó <jlledom@member.fsf.org>2020-05-31 09:15:36 +0200
commit672b16511bd4f022926c3714fc1a4cbffaca8605 (patch)
tree90c229de9278653a8dadfcacfa2a5e2ea5f5d697
parentdfd009a68bd4428f5fe873e807662e1219dcad3a (diff)
downloadpciutils-672b16511bd4f022926c3714fc1a4cbffaca8605.tar.gz
Hurd: Fix multiline strings
-rw-r--r--lib/hurd.c7
1 files 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);