gbm: Use unsigned for BO offset getter
authorDaniel Stone <daniels@collabora.com>
Thu, 23 Mar 2017 15:09:49 +0000 (15:09 +0000)
committerDaniel Stone <daniels@collabora.com>
Thu, 23 Mar 2017 15:28:41 +0000 (15:28 +0000)
commit378025ca8b82c5f2068e202f1016450d97820d99
tree68d6a29e15d455bfa3f8dcb14b883b31f8273cd9
parentec0313fd58fa1a64ec5ff7176e9fe0475f034d8c
gbm: Use unsigned for BO offset getter

The actual offset returned is uint32_t, however int64_t was used as the
return type from gbm_bo_get_offset to allow negative returns to signal
errors to the caller.

In case of an error getting the offset, the user will also be unable to
get the handle/FD, and thus have nothing to offset into. This means that
returning 0 as an error value is harmless, allowing us to change the
return type to uint32_t in order to avoid signed/unsigned confusion in
callers.

Signed-off-by: Daniel Stone <daniels@collabora.com>
Cc: Ben Widawsky <ben@bwidawsk.net>
Cc: Jason Ekstrand <jason@jlekstrand.net>
src/gbm/backends/dri/gbm_dri.c
src/gbm/main/gbm.c
src/gbm/main/gbm.h
src/gbm/main/gbmint.h