slight fix
This commit is contained in:
parent
2214494a77
commit
e4cdd7df49
|
@ -12,6 +12,6 @@ main(int argc, char *argv[])
|
||||||
(void)fputs(*argv, stdout); // Print argv
|
(void)fputs(*argv, stdout); // Print argv
|
||||||
if(*++argv) putchar(' '); // If multiple things in argv, print a space between them.
|
if(*++argv) putchar(' '); // If multiple things in argv, print a space between them.
|
||||||
}
|
}
|
||||||
if(nflag) putchar('\n');
|
if(!nflag) putchar('\n');
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue