Author: tsoome
Date: Wed Sep 25 07:36:35 2019
New Revision: 352670
URL: https://svnweb.freebsd.org/changeset/base/352670

Log:
  loader: fix indentation in efi_console and vidconsole
  
  Remove extra tab.
  
  Reported by:  yuripv

Modified:
  head/stand/efi/libefi/efi_console.c
  head/stand/i386/libi386/vidconsole.c

Modified: head/stand/efi/libefi/efi_console.c
==============================================================================
--- head/stand/efi/libefi/efi_console.c Wed Sep 25 07:09:25 2019        
(r352669)
+++ head/stand/efi/libefi/efi_console.c Wed Sep 25 07:36:35 2019        
(r352670)
@@ -374,7 +374,7 @@ color_name_to_teken(const char *name, int *val)
                *val = TC_CYAN;
                return (true);
        }
-               if (strcasecmp(name, "white") == 0) {
+       if (strcasecmp(name, "white") == 0) {
                *val = TC_WHITE;
                return (true);
        }

Modified: head/stand/i386/libi386/vidconsole.c
==============================================================================
--- head/stand/i386/libi386/vidconsole.c        Wed Sep 25 07:09:25 2019        
(r352669)
+++ head/stand/i386/libi386/vidconsole.c        Wed Sep 25 07:36:35 2019        
(r352670)
@@ -600,7 +600,7 @@ color_name_to_teken(const char *name, int *val)
                *val = TC_CYAN;
                return (true);
        }
-               if (strcasecmp(name, "white") == 0) {
+       if (strcasecmp(name, "white") == 0) {
                *val = TC_WHITE;
                return (true);
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to