diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-01-18 17:22:25 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-01-18 17:22:25 +0000 |
commit | 6a82d44d9cb25b8ef1e1697adfcfe91a964c221f (patch) | |
tree | 0af71acac08b78f3807d75f5b1cf0fd7110a3955 /src/mesa/drivers/dri/mga | |
parent | 87745ce771cb2e15d3f4c919a96f7a1e72fdfcbf (diff) |
Change get_ust_nop()'s parameter from int64_t to uint64_t to silence warnings.
Diffstat (limited to 'src/mesa/drivers/dri/mga')
-rw-r--r-- | src/mesa/drivers/dri/mga/mga_xmesa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/mga/mga_xmesa.c b/src/mesa/drivers/dri/mga/mga_xmesa.c index 52145e62e8..fa8057e732 100644 --- a/src/mesa/drivers/dri/mga/mga_xmesa.c +++ b/src/mesa/drivers/dri/mga/mga_xmesa.c @@ -332,7 +332,7 @@ static const struct dri_debug_control debug_control[] = static int -get_ust_nop( int64_t * ust ) +get_ust_nop( uint64_t * ust ) { *ust = 1; return 0; |