mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 07:08:04 +02:00
freedreno/fdperf: Silence a compiler warning about current counter.
It seems like selecting the first here is a fine choice if we can't find the counter. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7224>
This commit is contained in:
parent
a512e9eecd
commit
9b156ef57b
1 changed files with 1 additions and 1 deletions
|
|
@ -737,7 +737,7 @@ counter_dialog(void)
|
|||
{
|
||||
WINDOW *dialog;
|
||||
struct counter_group *group;
|
||||
int cnt, current = 0, scroll;
|
||||
int cnt = 0, current = 0, scroll;
|
||||
|
||||
/* figure out dialog size: */
|
||||
int dh = h/2;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue