Module: Mesa Branch: master Commit: 2de2e1702b4fab73b1f577fa4a21b7bd0a7040dd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2de2e1702b4fab73b1f577fa4a21b7bd0a7040dd
Author: Brian Paul <[email protected]> Date: Thu Nov 12 15:59:21 2015 -0700 mesa: fix MSVC build break in extensions.h Reviewed-by: Emil Velikov <[email protected]> --- src/mesa/main/extensions.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/extensions.h b/src/mesa/main/extensions.h index e4671be..1615e1c 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 */ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
