summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-18 11:56:51 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-18 11:58:22 +0200
commit8899e449b75ce4c0fd191d18ab00e11f3f88e365 (patch)
treea9cc123815f9a40b3991f382d24c8e75c96a3fb0 /include
parent70fc3a299c2adb2711e13fe07ac73b827a54bbed (diff)
fix include guard for sal/types.h
Change-Id: I77e10d2644b18b150f9489c7f754405974af107a
Diffstat (limited to 'include')
-rw-r--r--include/sal/types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sal/types.h b/include/sal/types.h
index 8668cd58acfa..5a534b8e5177 100644
--- a/include/sal/types.h
+++ b/include/sal/types.h
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef _SAL_TYPES_H_
-#define _SAL_TYPES_H_
+#ifndef INCLUDED_SAL_TYPES_H
+#define INCLUDED_SAL_TYPES_H
#include <sal/config.h>
#include <sal/macros.h>
@@ -603,6 +603,6 @@ template< typename T1, typename T2 > inline T1 static_int_cast(T2 n) {
#define SAL_WARN_UNUSED
#endif
-#endif /*_SAL_TYPES_H_ */
+#endif // INCLUDED_SAL_TYPES_H
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */