mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
gallium/radeon: attempt to fix a compiler failure in radeon_winsys.h
trivial.
This commit is contained in:
parent
0591df025b
commit
156832ee2b
1 changed files with 1 additions and 1 deletions
|
|
@ -684,7 +684,7 @@ static inline enum radeon_bo_domain radeon_domain_from_heap(enum radeon_heap hea
|
|||
return RADEON_DOMAIN_GTT;
|
||||
default:
|
||||
assert(0);
|
||||
return 0;
|
||||
return (enum radeon_bo_domain)0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue