Replace uint64_t with unsigned long in struct dbreg.

This commit is contained in:
Marcel Moolenaar 2004-03-20 05:27:14 +00:00
parent 056dc22c4f
commit e10f4ce153

View File

@ -44,8 +44,8 @@ struct fpreg {
};
struct dbreg {
uint64_t dbr_data[8];
uint64_t dbr_inst[8];
unsigned long dbr_data[8];
unsigned long dbr_inst[8];
};
#ifdef _KERNEL