From e10f4ce153d1cea46c10bbfe492985e21c656904 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Sat, 20 Mar 2004 05:27:14 +0000 Subject: [PATCH] Replace uint64_t with unsigned long in struct dbreg. --- sys/ia64/include/reg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/ia64/include/reg.h b/sys/ia64/include/reg.h index d453826c365..453c9b83141 100644 --- a/sys/ia64/include/reg.h +++ b/sys/ia64/include/reg.h @@ -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