soxstack: silence GCC warning

Add parens around _STACK_FLAG_GROWS expression to fix GCC warning about
arithmetic in operand of '|'.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2023-08-08 21:13:20 -04:00
parent 6dff61a1d1
commit 07d3738b82

View File

@ -16,7 +16,7 @@
int checkstack(void);
#define _STACK_FLAG_GROWS KVME_FLAG_GROWS_UP | KVME_FLAG_GROWS_DOWN
#define _STACK_FLAG_GROWS (KVME_FLAG_GROWS_UP | KVME_FLAG_GROWS_DOWN)
int
checkstack(void)
{