diff options
author | pfg <pfg@FreeBSD.org> | 2016-04-26 17:39:54 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-04-26 17:39:54 +0000 |
commit | 1df61c536d8a0f5edc0372de71d890814b9b277a (patch) | |
tree | dcd5008131650092bfafe6868c13700fc59c2788 /sys/i386/linux | |
parent | 437e80c6fb7d22ef50bfa5f9b9b5c811a1dd4e85 (diff) | |
download | FreeBSD-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/i386/linux')
-rw-r--r-- | sys/i386/linux/linux_sysvec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c index 5419af8..4ce4f07 100644 --- a/sys/i386/linux/linux_sysvec.c +++ b/sys/i386/linux/linux_sysvec.c @@ -320,7 +320,7 @@ linux_copyout_strings(struct image_params *imgp) destp = (caddr_t)arginfo - SPARE_USRSPACE - linux_szplatform - 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 *)); /* * install LINUX_PLATFORM |