Clean up lines containing only tabs.

This commit is contained in:
gson 2024-02-27 21:05:34 +00:00
parent ca24696e6c
commit cca8938d5b
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: audio.c,v 1.26 2019/11/09 12:46:44 mrg Exp $ */
/* $NetBSD: audio.c,v 1.27 2024/02/27 21:05:34 gson Exp $ */
/*
* Copyright (c) 1999, 2013, 2015, 2019 Matthew R. Green
@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: audio.c,v 1.26 2019/11/09 12:46:44 mrg Exp $");
__RCSID("$NetBSD: audio.c,v 1.27 2024/02/27 21:05:34 gson Exp $");
#endif
@ -205,7 +205,7 @@ write_header(struct track_info *ti)
veclen = 0;
tlen = 0;
if (hdrlen != 0) {
iv[veclen].iov_base = hdr;
iv[veclen].iov_len = hdrlen;

View File

@ -1,4 +1,4 @@
/* $NetBSD: decode.c,v 1.1 2015/06/21 06:06:01 mrg Exp $ */
/* $NetBSD: decode.c,v 1.2 2024/02/27 21:05:34 gson Exp $ */
/*
* Copyright (c) 1999 Matthew R. Green
@ -29,7 +29,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: decode.c,v 1.1 2015/06/21 06:06:01 mrg Exp $");
__RCSID("$NetBSD: decode.c,v 1.2 2024/02/27 21:05:34 gson Exp $");
#endif
#include <sys/types.h>
@ -85,7 +85,7 @@ decode_time(const char *arg, struct timeval *tvp)
tvp->tv_sec = tvp->tv_usec = 0;
s = copy;
/* handle [hh:]mm:ss.dd */
if ((colon = strchr(s, ':')) != NULL) {
*colon++ = '\0';

View File

@ -1,4 +1,4 @@
/* $NetBSD: sun.c,v 1.10 2019/11/09 12:46:44 mrg Exp $ */
/* $NetBSD: sun.c,v 1.11 2024/02/27 21:05:34 gson Exp $ */
/*
* Copyright (c) 2002, 2013, 2015 Matthew R. Green
@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: sun.c,v 1.10 2019/11/09 12:46:44 mrg Exp $");
__RCSID("$NetBSD: sun.c,v 1.11 2024/02/27 21:05:34 gson Exp $");
#endif
@ -149,7 +149,7 @@ sun_prepare_header(struct track_info *ti, void **hdrp, size_t *lenp, int *leftp)
break;
#endif
}
/* if we can't express this as a Sun header, don't write any */
if (audio_encoding_to_sun(ti->encoding, ti->precision, &sunenc) != 0) {
if (!ti->qflag && !warned) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: wav.c,v 1.17 2024/02/27 20:40:29 gson Exp $ */
/* $NetBSD: wav.c,v 1.18 2024/02/27 21:05:34 gson Exp $ */
/*
* Copyright (c) 2002, 2009, 2013, 2015, 2019 Matthew R. Green
@ -33,7 +33,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: wav.c,v 1.17 2024/02/27 20:40:29 gson Exp $");
__RCSID("$NetBSD: wav.c,v 1.18 2024/02/27 21:05:34 gson Exp $");
#endif
@ -374,7 +374,7 @@ wav_prepare_header(struct track_info *ti, void **hdrp, size_t *lenp, int *leftp)
abps = (double)align*ti->sample_rate / (double)1 + 0.5;
nsample = (datalen / ti->precision) / ti->sample_rate;
/*
* now we've calculated the info, write it out!
*/