Fix coding style

It was about damn time. Consistency is very important in such a
big codebase.
This commit is contained in:
FRIGN
2014-11-13 18:29:30 +01:00
committed by sin
parent e35d9e62a5
commit eee98ed3a4
70 changed files with 622 additions and 557 deletions

View File

@@ -12,10 +12,10 @@ usage(void)
int
main(int argc, char *argv[])
{
if(argc != 2)
if (argc != 2)
usage();
if(unlink(argv[1]) == -1)
if (unlink(argv[1]) == -1)
eprintf("unlink: '%s':", argv[1]);
return 0;