diff options
author | Nayan Deshmukh <nayan26deshmukh@gmail.com> | 2016-10-01 10:52:52 +0530 |
---|---|---|
committer | Leo Liu <leo.liu@amd.com> | 2016-10-03 12:51:30 -0400 |
commit | b7a0f2e1f769314d88d902c8506250d18393d359 (patch) | |
tree | 6fc6c3379826660eb6623442f2c5f9ea77058e5a /src/gallium | |
parent | 903d00cd32137161c0b57bcba95af51e47d91fa5 (diff) |
vl/dri3: fix warning about incompatible pointer type
Signed-off-by: Nayan Deshmukh <nayan26deshmukh@gmail.com>
Reviewed-by: Leo Liu <leo.liu@amd.com>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_winsys_dri3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_winsys_dri3.c b/src/gallium/auxiliary/vl/vl_winsys_dri3.c index 191a64bd4f..29299289fe 100644 --- a/src/gallium/auxiliary/vl/vl_winsys_dri3.c +++ b/src/gallium/auxiliary/vl/vl_winsys_dri3.c @@ -85,7 +85,7 @@ struct vl_dri3_screen int64_t last_ust, ns_frame, last_msc, next_msc; bool flushed; - bool is_different_gpu; + int is_different_gpu; }; static void |