fix double backslash - ii - irc it, simple FIFO based irc client
 (HTM) git clone git://git.suckless.org/ii
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit a4434536cd80325016309edbb02cbd27cd43b42d
 (DIR) parent 18580a159febc9c9658d82d73b90b53895c1ec00
 (HTM) Author: Nico Golde <nico@ngolde.de>
       Date:   Fri,  2 Sep 2016 18:43:08 +0200
       
       fix double backslash
       
       Diffstat:
         M ii.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) 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