]> git.cameronkatri.com Git - opendircolors.git/blobdiff - common.c
Fix some errors
[opendircolors.git] / common.c
index bbabfc99b9373489059f43410b0b445fe8aa7541..fb96d368a30c8ff9bcfafee17bb8665af1ed61d7 100644 (file)
--- a/common.c
+++ b/common.c
  */
 
 #include <ctype.h>
+#include <err.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <err.h>
 
 #include "common.h"
 
@@ -39,7 +39,6 @@ parseansi(char *ansi, struct color *color)
 {
        long long num;
        char *token;
-       const char *errstr;
        bool bold = false, underline = false;
 
        color->fg = 'x';
@@ -48,17 +47,17 @@ parseansi(char *ansi, struct color *color)
        while ((token = strsep(&ansi, ";")) != NULL) {
                num = strtonum(token, 0, 47, NULL);
                switch (num) {
-                       case 1:
-                               bold = true;
-                               break;
-                       case 4:
-                               underline = true;
-                               break;
-                       default:
-                               if (num <= 37)
-                                       color->fg = (char)((num - 30) + 97);
-                               else if (num <= 47)
-                                       color->bg = (char)((num - 40) + 97);
+               case 1:
+                       bold = true;
+                       break;
+               case 4:
+                       underline = true;
+                       break;
+               default:
+                       if (num <= 37)
+                               color->fg = (char)((num - 30) + 97);
+                       else if (num <= 47)
+                               color->bg = (char)((num - 40) + 97);
                }
        }
        if (bold)