mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-09 07:28:42 +02:00
libdrm: oops fix get cap return value.
This commit is contained in:
parent
bb99465366
commit
3b04c73650
1 changed files with 1 additions and 1 deletions
|
|
@ -820,7 +820,7 @@ int drmGetCap(int fd, uint64_t capability, uint64_t *value)
|
|||
return ret;
|
||||
|
||||
*value = cap.value;
|
||||
return cap.value;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue