git clone https://orangeshoelaces.net/git/ii.git
Author: Nico Golde on 09/02/2016
Committer: Nico Golde on 09/02/2016
fix double backslash
ii.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ii.c b/ii.c
index 19f1b4c..3c6c3c7 100644
--- a/ii.c
+++ b/ii.c
@@ -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