summaryrefslogtreecommitdiffstats
path: root/sys/amd64/linux
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-04-26 17:39:54 +0000
committerpfg <pfg@FreeBSD.org>2016-04-26 17:39:54 +0000
commit1df61c536d8a0f5edc0372de71d890814b9b277a (patch)
treedcd5008131650092bfafe6868c13700fc59c2788 /sys/amd64/linux
parent437e80c6fb7d22ef50bfa5f9b9b5c811a1dd4e85 (diff)
downloadFreeBSD-src-1df61c536d8a0f5edc0372de71d890814b9b277a.zip
FreeBSD-src-1df61c536d8a0f5edc0372de71d890814b9b277a.tar.gz
MFC r298482:
Cleanup redundant parenthesis from existing howmany()/roundup() macro uses. Requested by: dchagin
Diffstat (limited to 'sys/amd64/linux')
-rw-r--r--sys/amd64/linux/linux_sysvec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/linux/linux_sysvec.c b/sys/amd64/linux/linux_sysvec.c
index fc8ee3e..13f9199 100644
--- a/sys/amd64/linux/linux_sysvec.c
+++ b/sys/amd64/linux/linux_sysvec.c
@@ -346,7 +346,7 @@ linux_copyout_strings(struct image_params *imgp)
destp = (caddr_t)arginfo - SPARE_USRSPACE -
roundup(sizeof(canary), sizeof(char *)) -
roundup(execpath_len, sizeof(char *)) -
- roundup((ARG_MAX - imgp->args->stringspace), sizeof(char *));
+ roundup(ARG_MAX - imgp->args->stringspace, sizeof(char *));
if (execpath_len != 0) {
imgp->execpathp = (uintptr_t)arginfo - execpath_len;
OpenPOWER on IntegriCloud