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);
 }
 
 /*
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to