From 48107b5a2b0c911fb60a367458806e3db84283f2 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 2 May 2019 06:32:56 -0600 Subject: [PATCH] glsl: fix typo in #warning message Trivial. Spotted by Eric Engestrom. --- src/compiler/glsl/builtin_variables.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2