diff options
author | Henri Verbeet <[email protected]> | 2011-01-30 18:57:39 +0100 |
---|---|---|
committer | Henri Verbeet <[email protected]> | 2011-01-30 18:59:13 +0100 |
commit | f668b464c0c08bd929c259048082a9d3585481a2 (patch) | |
tree | 93eda4a05573ab006426c44f8e03c13af5cd3cc4 /src/gallium/auxiliary/util | |
parent | 38b54158b68479e1f97c8452ba0d67f50dce7582 (diff) |
util: Call tables should be const.
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_transfer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_transfer.h b/src/gallium/auxiliary/util/u_transfer.h index 3412e13c3cc..52191512ac7 100644 --- a/src/gallium/auxiliary/util/u_transfer.h +++ b/src/gallium/auxiliary/util/u_transfer.h @@ -93,7 +93,7 @@ struct u_resource_vtbl { struct u_resource { struct pipe_resource b; - struct u_resource_vtbl *vtbl; + const struct u_resource_vtbl *vtbl; }; |