Browse Source

rootwrap: use fputs() where applicable

pull/58/head
Rémi Denis-Courmont 9 years ago
parent
commit
ac382c3b63
  1. 2
      bin/rootwrap.c

2
bin/rootwrap.c

@ -245,7 +245,7 @@ int main (int argc, char *argv[])
}
if (uid == 0)
{
fprintf (stderr, "Cannot determine unprivileged user for VLC!\n");
fputs("Cannot determine unprivileged user for VLC!\n", stderr);
exit (1);
}
setuid (uid);

Loading…
Cancel
Save