diff options
author | Brian Paul <[email protected]> | 2015-11-12 15:59:21 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-11-12 16:57:18 -0700 |
commit | 2de2e1702b4fab73b1f577fa4a21b7bd0a7040dd (patch) | |
tree | 7c8c0734ca586753485c61fd8f8a861edee50247 /src/mesa/main | |
parent | 39f51ec96f00f601b9c4d4e321dacb3af9dc866f (diff) |
mesa: fix MSVC build break in extensions.h
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/extensions.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.h b/src/mesa/main/extensions.h index e4671be2cf6..1615e1cc0a4 100644 --- a/src/mesa/main/extensions.h +++ b/src/mesa/main/extensions.h @@ -75,7 +75,9 @@ struct mesa_extension { /** Year the extension was proposed or approved. Used to sort the * extension string chronologically. */ uint16_t year; -} extern const _mesa_extension_table[]; +}; + +extern const struct mesa_extension _mesa_extension_table[]; /* Generate enums for the functions below */ |