From: Daniel Borca Date: Mon, 14 Feb 2005 08:02:50 +0000 (+0000) Subject: `static const' instead of `const static' X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b6082fd236286c50d2b47eb42f1686989516a69c;p=mesa.git `static const' instead of `const static' --- diff --git a/src/mesa/tnl/t_vertex.c b/src/mesa/tnl/t_vertex.c index 2f7c37ad246..2df2a0ac0df 100644 --- a/src/mesa/tnl/t_vertex.c +++ b/src/mesa/tnl/t_vertex.c @@ -732,7 +732,7 @@ static void extract_1ub_1f( const struct tnl_clipspace_attr *a, GLfloat *out, co } -const static struct { +static const struct { const char *name; tnl_extract_func extract; tnl_insert_func insert[4];