]> mj.ucw.cz Git - pciutils.git/commitdiff
Hurd: Fix multiline strings
authorJoan Lledó <jlledom@member.fsf.org>
Sun, 31 May 2020 07:15:36 +0000 (09:15 +0200)
committerJoan Lledó <jlledom@member.fsf.org>
Sun, 31 May 2020 07:15:36 +0000 (09:15 +0200)
lib/hurd.c

index 9993c54d9c7cc0f7cbdb8c97a4a9d33c57bbad14..389ca3367e3eeebdbe42b4236793584e0ffd4346 100644 (file)
@@ -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);