diff options
author | 2020-02-09 19:58:17 +0000 | |
---|---|---|
committer | 2020-02-09 19:58:17 +0000 | |
commit | 431e362e062db4535f3ee5c60d7554b2ac75deab (patch) | |
tree | 0029a4b052da69bb8c01c49f9c771ff0e1ba375d | |
parent | mention /etc/examples, some input by deraadt@ (diff) | |
download | wireguard-openbsd-431e362e062db4535f3ee5c60d7554b2ac75deab.tar.xz wireguard-openbsd-431e362e062db4535f3ee5c60d7554b2ac75deab.zip |
Rename WAV_H "include guard" macro of afile.h to AFILE_H.
Fix from Jan Stary <hans at stare.cz>, thanks.
-rw-r--r-- | usr.bin/aucat/afile.h | 8 |
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) */ |