Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <janne-vlc@jannau.net>2018-11-19 21:55:53 +0300
committerJanne Grunau <janne-vlc@jannau.net>2018-11-21 00:01:58 +0300
commitd0fa8ce913512ae18ca9acfd96d9f5fc24e69d4a (patch)
treed029a4c28bed6b2dc5ae6245979d683783ab8fe0
parentce258fa4003c1ccaecea45311ecc063e31a241ad (diff)
common.h: prefix multiple inclusion guard with DAV1D_
-rw-r--r--include/dav1d/common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dav1d/common.h b/include/dav1d/common.h
index f85f5b1..a4e3021 100644
--- a/include/dav1d/common.h
+++ b/include/dav1d/common.h
@@ -25,8 +25,8 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef __COMMON_H__
-#define __COMMON_H__
+#ifndef __DAV1D_COMMON_H__
+#define __DAV1D_COMMON_H__
#ifndef DAV1D_API
#if defined _WIN32
@@ -40,4 +40,4 @@
#endif
#endif
-#endif // __COMMON_H__
+#endif // __DAV1D_COMMON_H__