aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2019-05-02 06:32:56 -0600
committerBrian Paul <[email protected]>2019-05-02 06:32:57 -0600
commit48107b5a2b0c911fb60a367458806e3db84283f2 (patch)
treead4d64604484337358cb37dccadf6168a498356b /src
parentf0f7c3b03a93f1e2f6c15262585af774013c6031 (diff)
glsl: fix typo in #warning message
Trivial. Spotted by Eric Engestrom.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/glsl/builtin_variables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/builtin_variables.cpp b/src/compiler/glsl/builtin_variables.cpp
index 1b9963a530a..4a886dd3255 100644
--- a/src/compiler/glsl/builtin_variables.cpp
+++ b/src/compiler/glsl/builtin_variables.cpp
@@ -31,7 +31,7 @@
* we're simply testing for version 7.x here.
*/
#if defined(__MINGW32__) && __GNUC__ == 7
-#warning "disabling optimizations for this file to work around compiler bug in MiGW gcc 7.x"
+#warning "disabling optimizations for this file to work around compiler bug in MinGW gcc 7.x"
#pragma GCC optimize("O1")
#endif