tgsi: add const qualifier

This commit is contained in:
Keith Whitwell 2009-09-12 14:04:36 -07:00
parent 3cb30e55e4
commit 983b261e6d
2 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ epilog(
boolean
tgsi_sanity_check(
struct tgsi_token *tokens )
const struct tgsi_token *tokens )
{
struct sanity_check_ctx ctx;

View File

@ -40,7 +40,7 @@ extern "C" {
*/
boolean
tgsi_sanity_check(
struct tgsi_token *tokens );
const struct tgsi_token *tokens );
#if defined __cplusplus
}