Fix an unparenthasized macro argument. md5s differ but this is likely

to order of operations that are actually fixed by the proper parenthasizing.
This commit is contained in:
Alfred Perlstein 2002-11-09 20:13:16 +00:00
parent 306ced0dd0
commit a3f8cf2bbd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106705

View File

@ -69,7 +69,7 @@ static int viapm_debug = 0;
#define VIAPM_INB(port) \
((u_char)bus_space_read_1(viapm->st, viapm->sh, port))
#define VIAPM_OUTB(port,val) \
(bus_space_write_1(viapm->st, viapm->sh, port, (u_char)val))
(bus_space_write_1(viapm->st, viapm->sh, port, (u_char)(val)))
#define VIAPM_TYP_UNKNOWN 0
#define VIAPM_TYP_586B_3040E 1