diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-04 18:30:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-04 18:30:06 +0000 |
commit | 27fd401569750304c84062fbd263c0ddc9ffb4e9 (patch) | |
tree | 31cae54062a308f658e39ed89d05873ef295aa6b /usr.sbin/config/mkmakefile.c | |
parent | 0e1adc1ef708c6d4bbd352ef834deb2247c3a329 (diff) |
knf and lint
Diffstat (limited to 'usr.sbin/config/mkmakefile.c')
-rw-r--r-- | usr.sbin/config/mkmakefile.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c index 86dec823d93..dff4bac249b 100644 --- a/usr.sbin/config/mkmakefile.c +++ b/usr.sbin/config/mkmakefile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mkmakefile.c,v 1.15 2003/06/28 04:55:07 deraadt Exp $ */ +/* $OpenBSD: mkmakefile.c,v 1.16 2004/01/04 18:30:05 deraadt Exp $ */ /* $NetBSD: mkmakefile.c,v 1.34 1997/02/02 21:12:36 thorpej Exp $ */ /* @@ -244,19 +244,19 @@ emitobjs(FILE *fp) sp = ' '; } for (oi = allobjects; oi != NULL; oi = oi->oi_next) { - if ((oi->oi_flags & OI_SEL) == 0) - continue; - len = strlen(oi->oi_path) + 3; - if (lpos + len > 72) { - if (fputs(" \\\n", fp) < 0) - return (1); - sp = '\t'; - lpos = 7; - } - if (fprintf(fp, "%c$S/%s", sp, oi->oi_path) < 0) - return (1); - lpos += len + 1; - sp = ' '; + if ((oi->oi_flags & OI_SEL) == 0) + continue; + len = strlen(oi->oi_path) + 3; + if (lpos + len > 72) { + if (fputs(" \\\n", fp) < 0) + return (1); + sp = '\t'; + lpos = 7; + } + if (fprintf(fp, "%c$S/%s", sp, oi->oi_path) < 0) + return (1); + lpos += len + 1; + sp = ' '; } if (putc('\n', fp) < 0) return (1); @@ -294,7 +294,7 @@ emitfiles(FILE *fp, int suffix) if ((fi->fi_flags & FI_SEL) == 0) continue; if ((fpath = srcpath(fi)) == NULL) - return (1); + return (1); len = strlen(fpath); if (fpath[len - 1] != suffix) continue; |