summaryrefslogtreecommitdiffstats
path: root/sys/boot/efi/loader
diff options
context:
space:
mode:
authorsmh <smh@FreeBSD.org>2016-01-06 20:48:29 +0000
committersmh <smh@FreeBSD.org>2016-01-06 20:48:29 +0000
commit7efc78616813fc93824da961d10663c78e23315b (patch)
tree228300d4002b6d5c02274fa717b53431812043b8 /sys/boot/efi/loader
parent449ab1ce8f680e5fd3b087175e00bb70044a4440 (diff)
downloadFreeBSD-src-7efc78616813fc93824da961d10663c78e23315b.zip
FreeBSD-src-7efc78616813fc93824da961d10663c78e23315b.tar.gz
style(9) fixes for EFI boot
Fix some style(9) nits for EFI boot code, no functional changes. MFC after: 2 weeks X-MFC-With: r293268 Sponsored by: Multiplay
Diffstat (limited to 'sys/boot/efi/loader')
-rw-r--r--sys/boot/efi/loader/devicename.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/efi/loader/devicename.c b/sys/boot/efi/loader/devicename.c
index 89f9941..1ba33e8 100644
--- a/sys/boot/efi/loader/devicename.c
+++ b/sys/boot/efi/loader/devicename.c
@@ -147,7 +147,7 @@ efi_fmtdev(void *vdev)
break;
}
- return(buf);
+ return (buf);
}
/*
@@ -161,7 +161,7 @@ efi_setcurrdev(struct env_var *ev, int flags, const void *value)
rv = efi_parsedev(&ncurr, value, NULL);
if (rv != 0)
- return(rv);
+ return (rv);
free(ncurr);
env_setenv(ev->ev_name, flags | EV_NOHOOK, value, NULL, NULL);
OpenPOWER on IntegriCloud