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:
ngie 2016-01-16 01:37:17 +00:00
parent 782436485f
commit 73b8e753d3

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);
}