Module Name: src
Committed By: gson
Date: Tue Feb 27 20:40:30 UTC 2024
Modified Files:
src/usr.bin/audio/common: wav.c
src/usr.bin/audio/record: record.c
Log Message:
Clean up lines containing only spaces.
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/usr.bin/audio/common/wav.c
cvs rdiff -u -r1.57 -r1.58 src/usr.bin/audio/record/record.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/audio/common/wav.c
diff -u src/usr.bin/audio/common/wav.c:1.16 src/usr.bin/audio/common/wav.c:1.17
--- src/usr.bin/audio/common/wav.c:1.16 Sat Apr 15 12:39:44 2023
+++ src/usr.bin/audio/common/wav.c Tue Feb 27 20:40:29 2024
@@ -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 <sys/cdefs.h>
#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
strRIFF[4] = "RIFF",
strWAVE[4] = "WAVE",
strdata[4] = "data";
-
+
if (sz < 32)
return (AUDIO_ENOENT);
Index: src/usr.bin/audio/record/record.c
diff -u src/usr.bin/audio/record/record.c:1.57 src/usr.bin/audio/record/record.c:1.58
--- src/usr.bin/audio/record/record.c:1.57 Sat Apr 15 12:39:44 2023
+++ src/usr.bin/audio/record/record.c Tue Feb 27 20:40:30 2024
@@ -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 <sys/cdefs.h>
#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);