commit a4434536cd80325016309edbb02cbd27cd43b42d
parent 18580a159febc9c9658d82d73b90b53895c1ec00
Author: Nico Golde <nico@ngolde.de>
Date: Fri, 2 Sep 2016 18:43:08 +0200
fix double backslash
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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