Add missing newline to message about requiring root privileges

This will help ensure that scripts/parsers don't get confused when the message
is printed out

MFC after: 3 days
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2016-01-16 01:37:17 +00:00
parent dce512b671
commit 7c5cecc0f9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=294123

View File

@ -171,7 +171,7 @@ main(int argc __unused, char *argv[] __unused)
size_t s;
if (geteuid() != 0) {
printf("1..0 # SKIP: must be root");
printf("1..0 # SKIP: must be root\n");
return (0);
}