diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-02-09 18:11:05 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-02-09 18:11:05 +0000 |
commit | 123299546fccc0814d08c6258ed9e64a356f7607 (patch) | |
tree | 3ed0759ff93ea23bc049313deded9a1b053f2ae7 /src/gallium/auxiliary/indices/u_indices_gen.py | |
parent | b907d4cd8fafe719b4f87d877562829548937485 (diff) |
indices: Fix typo.
Diffstat (limited to 'src/gallium/auxiliary/indices/u_indices_gen.py')
-rw-r--r-- | src/gallium/auxiliary/indices/u_indices_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/indices/u_indices_gen.py b/src/gallium/auxiliary/indices/u_indices_gen.py index 40b047bb58..0dc58d0cd0 100644 --- a/src/gallium/auxiliary/indices/u_indices_gen.py +++ b/src/gallium/auxiliary/indices/u_indices_gen.py @@ -157,7 +157,7 @@ def preamble(intype, outtype, inpv, outpv, prim): print ' void *_out )' print '{' if intype != GENERATE: - print ' const ' + intype + '*in = (const ' + intype + '*)in;' + print ' const ' + intype + '*in = (const ' + intype + '*)_in;' print ' ' + outtype + ' *out = (' + outtype + '*)_out;' print ' unsigned i, j;' print ' (void)j;' |