diff options
author | Daniel Borca <dborca@users.sourceforge.net> | 2005-02-14 08:02:50 +0000 |
---|---|---|
committer | Daniel Borca <dborca@users.sourceforge.net> | 2005-02-14 08:02:50 +0000 |
commit | b6082fd236286c50d2b47eb42f1686989516a69c (patch) | |
tree | 311183e185916b932143c372c2cd50f4fa905d6f /src/mesa | |
parent | 0a13cebaa178f63c0ecf9275ae0f359b18bb28c7 (diff) |
`static const' instead of `const static'
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/tnl/t_vertex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vertex.c b/src/mesa/tnl/t_vertex.c index 2f7c37ad24..2df2a0ac0d 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]; |