=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/aucat/afile.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- src/usr.bin/aucat/afile.c 2015/08/27 07:25:27 1.2 +++ src/usr.bin/aucat/afile.c 2016/01/10 11:06:44 1.3 @@ -563,7 +563,7 @@ log_puts(f->path); log_puts(": failed to read chunk header\n"); return 0; - } + } csize = be32_get(&chunk.size); if (memcmp(chunk.id, aiff_id_comm, 4) == 0) { if (!afile_aiff_readcomm(f, csize, comp, &nfr)) @@ -572,7 +572,8 @@ } else if (memcmp(chunk.id, aiff_id_data, 4) == 0) { if (!afile_aiff_readdata(f, csize, &offs)) return 0; - f->startpos = sizeof(form) + pos + sizeof(chunk) + offs; + f->startpos = sizeof(form) + pos + + sizeof(chunk) + offs; break; } else { #ifdef DEBUG @@ -927,7 +928,8 @@ f->fd = STDOUT_FILENO; } else { f->path = path; - f->fd = open(f->path, O_WRONLY | O_TRUNC | O_CREAT, 0666); + f->fd = open(f->path, + O_WRONLY | O_TRUNC | O_CREAT, 0666); if (f->fd < 0) { log_puts(f->path); log_puts(": failed to create file\n"); @@ -956,7 +958,8 @@ f->par.msb = 1; f->endpos = f->startpos = sizeof(struct aiff_hdr); f->maxpos = 0x7fffffff; - if (!afile_writehdr(f, &dummy, sizeof(struct aiff_hdr))) + if (!afile_writehdr(f, &dummy, + sizeof(struct aiff_hdr))) goto bad_close; } else if (f->hdr == AFILE_HDR_AU) { f->par.bits = (f->par.bits + 7) & ~7;