diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2009-11-16 14:56:17 -0800 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2009-11-16 15:23:16 -0800 |
commit | b1616b2a811b9a161d1ee2a8251e0efe32a8c192 (patch) | |
tree | 7549079b7bcdfea8d90941e0d01022049bb82825 /src/mesa/main | |
parent | 12982e381d3474c5c00f89cc442d442df097339b (diff) |
Move 'static' to start of declaration to silence compiler warning
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/texstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index f43e216bc5..7cf3287713 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -3121,7 +3121,7 @@ _mesa_texstore_sla8(TEXSTORE_PARAMS) * Table mapping MESA_FORMAT_8 to _mesa_texstore_*() * XXX this is somewhat temporary. */ -const static struct { +static const struct { gl_format Name; StoreTexImageFunc Store; } |