diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-20 23:01:07 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-20 23:01:07 +0000 |
commit | 8ec10aafe97eb6e76b394512c2e6b5d1cfcdc13d (patch) | |
tree | 61e7fcad601cbfea2788b9abdd78f07215d57713 /sys/arch/amd64 | |
parent | dab14b4db0846344b96d59b21fb17b0ba7f16df1 (diff) |
unbreak tree, how did you do that miod
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/include/cpu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/include/cpu.h b/sys/arch/amd64/include/cpu.h index 2a40ff5ff3c..f5b9a201917 100644 --- a/sys/arch/amd64/include/cpu.h +++ b/sys/arch/amd64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.14 2005/09/20 21:04:13 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.15 2005/09/20 23:00:34 deraadt Exp $ */ /* $NetBSD: cpu.h,v 1.1 2003/04/26 18:39:39 fvdl Exp $ */ /*- @@ -141,8 +141,8 @@ extern struct cpu_info cpu_info_primary; extern struct cpu_info *cpu_info_list; #define CPU_INFO_ITERATOR int -#define CPU_INFO_FOREACH(cii, ci) for (cii = 0, ci = cpu_info_list; \ - ci != NULL; ci = ci->ci_next) +#define CPU_INFO_FOREACH(cii, ci) cii = 0, ci = cpu_info_list; \ + ci != NULL; ci = ci->ci_next #define CPU_INFO_UNIT(ci) ((ci)->ci_dev->dv_unit) |