mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 15:48:36 +02:00
ilo: silence a compiler warning
Silence
ilo_query.c:120:7: warning: 'return' with no value, in function returning non-void
since commit 96f164f6.
This commit is contained in:
parent
818cc90535
commit
ef5d4bcc3a
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ ilo_begin_query(struct pipe_context *pipe, struct pipe_query *query)
|
|||
struct ilo_query *q = ilo_query(query);
|
||||
|
||||
if (q->active)
|
||||
return;
|
||||
return false;
|
||||
|
||||
util_query_clear_result(&q->result, q->type);
|
||||
q->used = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue