Add a missing open paren to a macro that's been broken (and apparently

unused) since rev 1.1 so it is at least correct.

Submitted by:	Maxime Henrion <mux@qualys.com>
This commit is contained in:
John Baldwin 2001-12-04 00:35:28 +00:00
parent c3d15322a1
commit 9b37da1390
2 changed files with 2 additions and 2 deletions

View File

@ -188,7 +188,7 @@ struct region_descriptor {
#define SEGEX_IDT 0x02 /* interrupt descriptor table */
#define SEGEX_TI 0x04 /* local descriptor table */
/* other bits are affected descriptor index */
#define SEGEX_IDX(s) ((s)>>3)&0x1fff)
#define SEGEX_IDX(s) (((s)>>3)&0x1fff)
/*
* Size of IDT table

View File

@ -188,7 +188,7 @@ struct region_descriptor {
#define SEGEX_IDT 0x02 /* interrupt descriptor table */
#define SEGEX_TI 0x04 /* local descriptor table */
/* other bits are affected descriptor index */
#define SEGEX_IDX(s) ((s)>>3)&0x1fff)
#define SEGEX_IDX(s) (((s)>>3)&0x1fff)
/*
* Size of IDT table