summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSASANO Takayoshi <uaa@uaa.org.uk>2022-07-02 05:55:11 +0900
committerJaroslav Kysela <perex@perex.cz>2022-07-08 17:32:51 +0200
commit9230d000b373885376dd2c2110edd186ee57b7a7 (patch)
tree00aa25c804f5e87fa35c80aed24956ac75884419
parentcfd3da47fa0f094d541ff596c1a0c24e6dc9d3e2 (diff)
downloadalsa-lib-9230d000b373885376dd2c2110edd186ee57b7a7.tar.gz
include/sound/type_compat.h: fix include guard
include/sound/type_compat.h uses #define __TYPE_COMPAT_H but it conflicts same include guard of include/type_compat.h now, include/sound/type_compat.h uses #define __SOUND_TYPE_COMPAT_H this is already done in NetBSD's pkgsrc patch. (thanks to tsutsui@netbsd.org) Signed-off-by: SASANO Takayoshi <uaa@uaa.org.uk> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
-rw-r--r--include/sound/type_compat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sound/type_compat.h b/include/sound/type_compat.h
index 953ce566..b994ccfe 100644
--- a/include/sound/type_compat.h
+++ b/include/sound/type_compat.h
@@ -1,5 +1,5 @@
-#ifndef __TYPE_COMPAT_H
-#define __TYPE_COMPAT_H
+#ifndef __SOUND_TYPE_COMPAT_H
+#define __SOUND_TYPE_COMPAT_H
#ifndef DOC_HIDDEN
#include <stdint.h>
@@ -58,4 +58,4 @@ typedef int64_t __s64;
#endif /* DOC_HIDDEN */
-#endif /* __TYPE_COMPAT_H */
+#endif /* __SOUND_TYPE_COMPAT_H */