util: Call tables should be const.

This commit is contained in:
Henri Verbeet 2011-01-30 18:57:39 +01:00
parent 38b54158b6
commit f668b464c0

View file

@ -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;
};