mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
nvk: Quiet a compiler warning.
Looks like it's always set to me, but 🤷 Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24326>
This commit is contained in:
parent
0410054459
commit
826486339b
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ vk_push_print(FILE *fp, const struct nv_push *push,
|
|||
while (cur < push->end) {
|
||||
uint32_t hdr = *cur;
|
||||
uint32_t type = hdr >> 29;
|
||||
uint32_t inc;
|
||||
uint32_t inc = 0;
|
||||
uint32_t count = (hdr >> 16) & 0x1fff;
|
||||
uint32_t subchan = (hdr >> 13) & 0x7;
|
||||
uint32_t mthd = (hdr & 0xfff) << 2;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue