svn commit: r352670 - in head/stand: efi/libefi i386/libi386

Toomas Soome tsoome at FreeBSD.org
Wed Sep 25 07:36:36 UTC 2019


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);
 	}


More information about the svn-src-head mailing list