summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/osdcomm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/osdcomm.h')
-rw-r--r--src/osd/osdcomm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osd/osdcomm.h b/src/osd/osdcomm.h
index 66ae5758e6d..5eb3e1a480d 100644
--- a/src/osd/osdcomm.h
+++ b/src/osd/osdcomm.h
@@ -67,7 +67,7 @@
#define ATTR_CONST __attribute__((const))
#define ATTR_FORCE_INLINE __attribute__((always_inline))
#define ATTR_NONNULL(...) __attribute__((nonnull(__VA_ARGS__)))
-#define ATTR_DEPRECATED __attribute__((deprecated))
+#define ATTR_DEPRECATED __attribute__((deprecated))
/* not supported in GCC prior to 4.4.x */
#if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)
#define ATTR_HOT __attribute__((hot))
@@ -83,7 +83,7 @@
#else
#define ATTR_UNUSED
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
-#define ATTR_NORETURN __declspec(noreturn)
+#define ATTR_NORETURN __declspec(noreturn)
#else
#define ATTR_NORETURN
#endif
@@ -93,7 +93,7 @@
#define ATTR_CONST
#define ATTR_FORCE_INLINE
#define ATTR_NONNULL(...)
-#define ATTR_DEPRECATED __declspec(deprecated)
+#define ATTR_DEPRECATED __declspec(deprecated)
#define ATTR_HOT
#define ATTR_COLD
#define UNEXPECTED(exp) (exp)