svn commit: r323272 - head/sys/boot/efi/libefi

Warner Losh imp at FreeBSD.org
Thu Sep 7 15:46:46 UTC 2017


Author: imp
Date: Thu Sep  7 15:46:44 2017
New Revision: 323272
URL: https://svnweb.freebsd.org/changeset/base/323272

Log:
  Be consistent and do return (1);
  
  Noticed by: tsoome@
  Sponsored by: Netflix

Modified:
  head/sys/boot/efi/libefi/efichar.c

Modified: head/sys/boot/efi/libefi/efichar.c
==============================================================================
--- head/sys/boot/efi/libefi/efichar.c	Thu Sep  7 15:45:56 2017	(r323271)
+++ head/sys/boot/efi/libefi/efichar.c	Thu Sep  7 15:46:44 2017	(r323272)
@@ -50,7 +50,7 @@ ucs2len(const efi_char *str)
 	i = 0;
 	while (*str++)
 		i++;
-	return i;
+	return (i);
 }
 
 /*


More information about the svn-src-head mailing list