]> git.cameronkatri.com Git - opendircolors.git/blobdiff - opendircolors.c
clang-format everything
[opendircolors.git] / opendircolors.c
index 6f91f0d970e1a5fe2aa9e06c3f53e87887dfd473..da87fed0ee656918229271236565e0db1806fd58 100644 (file)
  * SUCH DAMAGE.
  */
 
+#include <err.h>
+#include <errno.h>
 #include <getopt.h>
+#include <libgen.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <sysexits.h>
-#include <errno.h>
-#include <libgen.h>
-#include <err.h>
 
 #include "common.h"
 
-void usage(const char*);
+void usage(const char *);
 
 #define MAXKEYLEN 21
 
@@ -103,7 +103,7 @@ main(int argc, char **argv)
                fd = stdin;
        else if ((fd = fopen(path, "r")) == NULL) {
                warnx("%s: %s\n", path, strerror(errno));
-               return(errno);
+               return (errno);
        }
 
        char *line = NULL;