slight fix

This commit is contained in:
call-cc 2020-06-03 00:33:47 -04:00
parent 2214494a77
commit e4cdd7df49
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ main(int argc, char *argv[])
(void)fputs(*argv, stdout); // Print argv
if(*++argv) putchar(' '); // If multiple things in argv, print a space between them.
}
if(nflag) putchar('\n');
if(!nflag) putchar('\n');
return 0;
}