From 448f7629eae615d806185f5902f0145e2c740f35 Mon Sep 17 00:00:00 2001 From: Alfred Perlstein Date: Thu, 30 May 2002 07:12:12 +0000 Subject: [PATCH] correct comment (replace i386 with __i386__) --- sbin/bsdlabel/bsdlabel.c | 4 ++-- sbin/disklabel/disklabel.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index e7417ba0107b..d29763cec8a0 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -643,7 +643,7 @@ makebootarea(char *boot, struct disklabel *dp, int f) if ((tmpbuf = (char *)malloc((int)dp->d_secsize)) == 0) err(4, "%s", xxboot); memcpy((void *)tmpbuf, (void *)boot, (int)dp->d_secsize); -#endif /* i386 */ +#endif /* __i386__ */ if (read(b, boot, (int)dp->d_secsize) < 0) err(4, "%s", xxboot); (void)close(b); @@ -657,7 +657,7 @@ makebootarea(char *boot, struct disklabel *dp, int f) (void *)&tmpbuf[DOSPARTOFF], NDOSPART * sizeof(struct dos_partition)); free(tmpbuf); -#endif /* i386 */ +#endif /* __i386__ */ b = open(bootxx, O_RDONLY); if (b < 0) err(4, "%s", bootxx); diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c index e7417ba0107b..d29763cec8a0 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -643,7 +643,7 @@ makebootarea(char *boot, struct disklabel *dp, int f) if ((tmpbuf = (char *)malloc((int)dp->d_secsize)) == 0) err(4, "%s", xxboot); memcpy((void *)tmpbuf, (void *)boot, (int)dp->d_secsize); -#endif /* i386 */ +#endif /* __i386__ */ if (read(b, boot, (int)dp->d_secsize) < 0) err(4, "%s", xxboot); (void)close(b); @@ -657,7 +657,7 @@ makebootarea(char *boot, struct disklabel *dp, int f) (void *)&tmpbuf[DOSPARTOFF], NDOSPART * sizeof(struct dos_partition)); free(tmpbuf); -#endif /* i386 */ +#endif /* __i386__ */ b = open(bootxx, O_RDONLY); if (b < 0) err(4, "%s", bootxx);