Date: Thu, 7 Sep 2017 15:46:44 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r323272 - head/sys/boot/efi/libefi Message-ID: <201709071546.v87Fki65011749@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); } /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709071546.v87Fki65011749>