Add in a missing newline

In the conversion, the newline got stripped. It worked fine when there
was only one module, but not when there are many. Add back the missing
newline.

Approved by: re@ (kib)
PR: 230868
Differential Revision: https://reviews.freebsd.org/D16895
This commit is contained in:
Warner Losh 2018-08-25 15:47:52 +00:00
parent 23c97bcba1
commit 4a82f36851
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=338314

View File

@ -386,7 +386,7 @@ search_hints(const char *bus, const char *dev, const char *pnpinfo)
if (all_flag)
printf("%s: %s", *dev ? dev : "unattached", lastmod);
else
printf("%s", lastmod);
printf("%s\n", lastmod);
if (verbose_flag)
printf("Matches --- %s ---\n", lastmod);
}