diff options
author | Dave Airlie <airlied@redhat.com> | 2011-03-04 15:48:31 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-03-04 15:48:31 +1000 |
commit | 3b04c73650b5e9bbcb602fdb8cea0b16ad82d0c0 (patch) | |
tree | 5ff278e47ca82f4058ebb3ba0b2e5858c7771548 | |
parent | bb994653667986757b4c906b8f144737667f7374 (diff) |
libdrm: oops fix get cap return value.
-rw-r--r-- | xf86drm.c | 2 |
1 files changed, 1 insertions, 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; } /** |