mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-03 02:20:17 +01:00
Fix copy'n'paste-o in FreeBSD drawable code.
This commit is contained in:
parent
7e6d08f670
commit
be3099f265
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ drm_drawable_compare(struct bsd_drm_drawable_info *a,
|
|||
{
|
||||
if (a->handle > b->handle)
|
||||
return 1;
|
||||
if (a->handle > b->handle)
|
||||
if (a->handle < b->handle)
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue