From: Changyeon Lee Date: Thu, 13 Jul 2023 06:00:50 +0000 (+0900) Subject: Fix type of fd handle X-Git-Tag: accepted/tizen/unified/20230714.085816~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01731a0120c5a69a0fd794396e61bb1a7a56b454;p=platform%2Fadaptation%2Flibtbm-dumb.git Fix type of fd handle Change-Id: I00e65e551a7b524b6c43b02d70e3c183bc7df5c0 --- diff --git a/src/tbm_backend_dumb.c b/src/tbm_backend_dumb.c index 2b33a35..d8c91cb 100644 --- a/src/tbm_backend_dumb.c +++ b/src/tbm_backend_dumb.c @@ -326,7 +326,7 @@ _dumb_bo_handle(tbm_dumb_bo *bo_data, int device) return (hal_tbm_bo_handle) NULL; } - bo_handle.u32 = (uint32_t)bo_data->dmabuf; + bo_handle.s32 = (int32_t)bo_data->dmabuf; break; default: TBM_BACKEND_ERR("Not supported device:%d", device);