fix double backslash

This commit is contained in:
Nico Golde 2016-09-02 18:43:08 +02:00
parent 18580a159f
commit a4434536cd

2
ii.c
View File

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