From: Brian Paul Date: Thu, 2 May 2019 12:32:56 +0000 (-0600) Subject: glsl: fix typo in #warning message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48107b5a2b0c911fb60a367458806e3db84283f2;p=mesa.git glsl: fix typo in #warning message Trivial. Spotted by Eric Engestrom. --- 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