fix double backslash

This commit is contained in:
Nico Golde 2016-09-02 18:43:08 +02:00
parent 18580a159f
commit a4434536cd
1 changed files with 1 additions and 1 deletions

2
ii.c
View File

@ -493,7 +493,7 @@ int main(int argc, char *argv[]) {
#ifdef USE_PLEDGE /* OpenBSD pledge(2) support */
if (pledge("stdio rpath wpath cpath dpath", NULL) == -1) {
fputs("ii: pledge\\n", stderr);
fputs("ii: pledge\n", stderr);
exit(EXIT_FAILURE);
}
#endif