From: Ben Widawsky Date: Wed, 26 Oct 2016 19:23:32 +0000 (-0700) Subject: gbm: Fix width height getters return type (trivial) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e63ab36d0e13ce41d37734ac5c02bc80a3141021;p=mesa.git gbm: Fix width height getters return type (trivial) v2: Other way round... to make consistent, make both return type have the fixed width - uint32_t. Cc: Daniel Stone Signed-off-by: Ben Widawsky Reviewed-by: Eric Engestrom Acked-by: Daniel Stone --- diff --git a/src/gbm/main/gbm.c b/src/gbm/main/gbm.c index 00113faab87..e96297ec52e 100644 --- a/src/gbm/main/gbm.c +++ b/src/gbm/main/gbm.c @@ -137,7 +137,7 @@ gbm_create_device(int fd) * \return The width of the allocated buffer object * */ -GBM_EXPORT unsigned int +GBM_EXPORT uint32_t gbm_bo_get_width(struct gbm_bo *bo) { return bo->width; @@ -148,7 +148,7 @@ gbm_bo_get_width(struct gbm_bo *bo) * \param bo The buffer object * \return The height of the allocated buffer object */ -GBM_EXPORT unsigned int +GBM_EXPORT uint32_t gbm_bo_get_height(struct gbm_bo *bo) { return bo->height;