summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Borca <dborca@users.sourceforge.net>2005-02-14 08:02:50 +0000
committerDaniel Borca <dborca@users.sourceforge.net>2005-02-14 08:02:50 +0000
commitb6082fd236286c50d2b47eb42f1686989516a69c (patch)
tree311183e185916b932143c372c2cd50f4fa905d6f /src
parent0a13cebaa178f63c0ecf9275ae0f359b18bb28c7 (diff)
downloadexternal_mesa3d-b6082fd236286c50d2b47eb42f1686989516a69c.zip
external_mesa3d-b6082fd236286c50d2b47eb42f1686989516a69c.tar.gz
external_mesa3d-b6082fd236286c50d2b47eb42f1686989516a69c.tar.bz2
`static const' instead of `const static'
Diffstat (limited to 'src')
-rw-r--r--src/mesa/tnl/t_vertex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vertex.c b/src/mesa/tnl/t_vertex.c
index 2f7c37a..2df2a0a 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];