Module: Mesa Branch: master Commit: bef9460dcdbda9e3f4caa55871d21cd42a0984ed URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=bef9460dcdbda9e3f4caa55871d21cd42a0984ed
Author: Brian Paul <[email protected]> Date: Tue May 4 21:10:50 2010 -0600 mesa: remove trailing comma in enum list Some compilers complain about this. --- src/mesa/main/mtypes.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 9640b79..81ab17c 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2876,7 +2876,7 @@ struct gl_dlist_state typedef enum { API_OPENGL, API_OPENGLES, - API_OPENGLES2, + API_OPENGLES2 } gl_api; /** _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
