mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 17:00:13 +01:00
vc4: Fix the argument type for cl_u16().
It doesn't matter, since it just got truncated to 16 inside, anyway.
This commit is contained in:
parent
890ef622d6
commit
0b607b54ce
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ cl_u8(struct vc4_cl *cl, uint8_t n)
|
|||
}
|
||||
|
||||
static inline void
|
||||
cl_u16(struct vc4_cl *cl, uint32_t n)
|
||||
cl_u16(struct vc4_cl *cl, uint16_t n)
|
||||
{
|
||||
assert((cl->next - cl->base) + 2 <= cl->size);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue