diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2014-03-12 09:36:22 +1300 |
---|---|---|
committer | Jonathan Marshall <jmarshall@xbmc.org> | 2014-03-15 10:46:34 +1300 |
commit | 08b45c8ad6d635649f797dba506ad3cc05f74004 (patch) | |
tree | 96806ff1c064b1794d29a750eba4de4ac80d6c04 | |
parent | cbbf313553bf31bbe0329099ed9207aa56275f5a (diff) |
Merge pull request #4397 from tru/imagehelperheaderguard
Fix: Incorrect header guard in libprojectM
-rw-r--r-- | xbmc/visualizations/XBMCProjectM/libprojectM/image_helper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/visualizations/XBMCProjectM/libprojectM/image_helper.h b/xbmc/visualizations/XBMCProjectM/libprojectM/image_helper.h index a451a0982f..207a359e23 100644 --- a/xbmc/visualizations/XBMCProjectM/libprojectM/image_helper.h +++ b/xbmc/visualizations/XBMCProjectM/libprojectM/image_helper.h @@ -7,7 +7,7 @@ */ #ifndef HEADER_IMAGE_HELPER -#define HEADER_GLFW_HELPER +#define HEADER_IMAGE_HELPER #ifdef __cplusplus extern "C" { @@ -86,4 +86,4 @@ int } #endif -#endif /* HEADER_GLFW_HELPER */ +#endif /* HEADER_IMAGE_HELPER */ |