summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/indices/u_indices_gen.py
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-02-09 18:11:05 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-02-09 18:11:05 +0000
commit123299546fccc0814d08c6258ed9e64a356f7607 (patch)
tree3ed0759ff93ea23bc049313deded9a1b053f2ae7 /src/gallium/auxiliary/indices/u_indices_gen.py
parentb907d4cd8fafe719b4f87d877562829548937485 (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.py2
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;'