Clean up lines containing only spaces.

This commit is contained in:
gson 2024-02-27 20:40:29 +00:00
parent 85b802e791
commit ca24696e6c
2 changed files with 6 additions and 6 deletions

View File

@ -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, u_int *enc, u_int *prec,
strRIFF[4] = "RIFF",
strWAVE[4] = "WAVE",
strdata[4] = "data";
if (sz < 32)
return (AUDIO_ENOENT);

View File

@ -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);