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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-08-19 18:40:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-19 18:40:16 +0400
commit20fdea918de205a009eba19d286148b21c4ea979 (patch)
tree44af0cfe46cb337c29bb10314057c6ffafb12c4d /source/blender/imbuf
parentb8ce663706e5822e2af46bd3b04629dce197489c (diff)
code cleanup: confirm include guards to our convention
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/IMB_colormanagement_intern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/imbuf/intern/IMB_colormanagement_intern.h b/source/blender/imbuf/intern/IMB_colormanagement_intern.h
index c372e125a66..db9345d2e1e 100644
--- a/source/blender/imbuf/intern/IMB_colormanagement_intern.h
+++ b/source/blender/imbuf/intern/IMB_colormanagement_intern.h
@@ -28,8 +28,8 @@
*
*/
-#ifndef IMB_COLORMANAGEMENT_INTERN_H
-#define IMB_COLORMANAGEMENT_INTERN_H
+#ifndef __IMB_COLORMANAGEMENT_INTERN_H__
+#define __IMB_COLORMANAGEMENT_INTERN_H__
#include "DNA_listBase.h"
@@ -97,4 +97,4 @@ void colorspace_set_default_role(char *colorspace, int size, int role);
void colormanage_imbuf_set_default_spaces(struct ImBuf *ibuf);
void colormanage_imbuf_make_linear(struct ImBuf *ibuf, const char *from_colorspace);
-#endif /* IMB_COLORMANAGEMENT_INTERN_H */
+#endif /* __IMB_COLORMANAGEMENT_INTERN_H__ */