mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-21 23:59:19 +02:00
common: no need for \n in check_superuser
warnx adds the \n for us. Signed-off-by: Ralf Ramsauer <ralf@ramses-pyramidenbau.de>
This commit is contained in:
parent
b884bfecfb
commit
43dad946c6
|
@ -106,7 +106,7 @@ void
|
|||
check_superuser(void)
|
||||
{
|
||||
if (geteuid() != 0) {
|
||||
warnx("Run as root and you'll be happy.\n");
|
||||
warnx("Run as root and you'll be happy.");
|
||||
exit(-1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue