missing paren

This commit is contained in:
christos 2012-01-25 19:39:07 +00:00
parent 669aa7297a
commit 674e61f5f1

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.401 2012/01/25 18:26:26 christos Exp $ */
/* $NetBSD: param.h,v 1.402 2012/01/25 19:39:07 christos Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@ -224,7 +224,7 @@
#define STACK_ALLOC(sp, _size) (((char *)(void *)(sp)) - (_size))
#define STACK_MAX(p, _size) ((char *)(void *)(p))
#endif
#define STACK_LEN_ALIGN(len, bytes) ((len) + bytes) & ~bytes)
#define STACK_LEN_ALIGN(len, bytes) (((len) + bytes) & ~bytes)
#endif /* defined(_KERNEL) || defined(__EXPOSE_STACK) */