summaryrefslogtreecommitdiff
path: root/usr.bin/aucat
diff options
context:
space:
mode:
authorAlexandre Ratchov <ratchov@cvs.openbsd.org>2020-02-09 19:58:18 +0000
committerAlexandre Ratchov <ratchov@cvs.openbsd.org>2020-02-09 19:58:18 +0000
commit41f768591a85f301e09e6dd686ace0cdd4ba8e4b (patch)
tree864bf41b65b91a95dade794a06ebef06348e598a /usr.bin/aucat
parent8d681b93d9008eefaadb831437011330185df77b (diff)
Rename WAV_H "include guard" macro of afile.h to AFILE_H.
Fix from Jan Stary <hans at stare.cz>, thanks.
Diffstat (limited to 'usr.bin/aucat')
-rw-r--r--usr.bin/aucat/afile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/aucat/afile.h b/usr.bin/aucat/afile.h
index 4966ed3aa25..30ad5e4cc26 100644
--- a/usr.bin/aucat/afile.h
+++ b/usr.bin/aucat/afile.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: afile.h,v 1.1 2015/01/21 08:43:55 ratchov Exp $ */
+/* $OpenBSD: afile.h,v 1.2 2020/02/09 19:58:17 ratchov Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -14,8 +14,8 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#ifndef WAV_H
-#define WAV_H
+#ifndef AFILE_H
+#define AFILE_H
#include <sys/types.h>
#include "dsp.h"
@@ -52,4 +52,4 @@ size_t afile_write(struct afile *, void *, size_t);
int afile_seek(struct afile *, off_t);
void afile_close(struct afile *);
-#endif /* !defined(WAV_H) */
+#endif /* !defined(AFILE_H) */