Properly put macro args in ().

Spotted by:	FlexeLint.
This commit is contained in:
Poul-Henning Kamp 2002-10-16 10:52:15 +00:00
parent 08b29601a0
commit af045176d1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105229

View File

@ -1107,8 +1107,8 @@ _vm_map_clip_start(vm_map_t map, vm_map_entry_t entry, vm_offset_t start)
*/
#define vm_map_clip_end(map, entry, endaddr) \
{ \
if (endaddr < entry->end) \
_vm_map_clip_end(map, entry, endaddr); \
if ((endaddr) < (entry->end)) \
_vm_map_clip_end((map), (entry), (endaddr)); \
}
/*