From ca24696e6cac2d574f59d6d8d517ffb7134da561 Mon Sep 17 00:00:00 2001 From: gson Date: Tue, 27 Feb 2024 20:40:29 +0000 Subject: [PATCH] Clean up lines containing only spaces. --- usr.bin/audio/common/wav.c | 6 +++--- usr.bin/audio/record/record.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/usr.bin/audio/common/wav.c b/usr.bin/audio/common/wav.c index 2e2eec4d6a88..495cf56cbe03 100644 --- a/usr.bin/audio/common/wav.c +++ b/usr.bin/audio/common/wav.c @@ -1,4 +1,4 @@ -/* $NetBSD: wav.c,v 1.16 2023/04/15 12:39:44 mlelstv Exp $ */ +/* $NetBSD: wav.c,v 1.17 2024/02/27 20:40:29 gson Exp $ */ /* * Copyright (c) 2002, 2009, 2013, 2015, 2019 Matthew R. Green @@ -33,7 +33,7 @@ #include #ifndef lint -__RCSID("$NetBSD: wav.c,v 1.16 2023/04/15 12:39:44 mlelstv Exp $"); +__RCSID("$NetBSD: wav.c,v 1.17 2024/02/27 20:40:29 gson Exp $"); #endif @@ -108,7 +108,7 @@ audio_wav_parse_hdr(void *hdr, size_t sz, u_int *enc, u_int *prec, strRIFF[4] = "RIFF", strWAVE[4] = "WAVE", strdata[4] = "data"; - + if (sz < 32) return (AUDIO_ENOENT); diff --git a/usr.bin/audio/record/record.c b/usr.bin/audio/record/record.c index 186e02ee4728..1d532e3b8477 100644 --- a/usr.bin/audio/record/record.c +++ b/usr.bin/audio/record/record.c @@ -1,4 +1,4 @@ -/* $NetBSD: record.c,v 1.57 2023/04/15 12:39:44 mlelstv Exp $ */ +/* $NetBSD: record.c,v 1.58 2024/02/27 20:40:30 gson Exp $ */ /* * Copyright (c) 1999, 2002, 2003, 2005, 2010 Matthew R. Green @@ -32,7 +32,7 @@ #include #ifndef lint -__RCSID("$NetBSD: record.c,v 1.57 2023/04/15 12:39:44 mlelstv Exp $"); +__RCSID("$NetBSD: record.c,v 1.58 2024/02/27 20:40:30 gson Exp $"); #endif @@ -332,7 +332,7 @@ main(int argc, char *argv[]) s = "change sign (big-endian, 32 bit)"; else if (conv_func == change_sign32_swap_bytes_le) s = "change sign & swap bytes (little-endian, 32 bit)"; - + if (s) fprintf(stderr, "%s: converting, using function: %s\n", getprogname(), s);