From: Changyeon Lee Date: Wed, 17 Dec 2014 10:19:20 +0000 (+0900) Subject: Fix type cast X-Git-Tag: submit/tizen_mobile/20141217.102634^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F51%2F32351%2F1;p=archive%2Fplatform%2Fadaptation%2Fsamsung_exynos%2Flibtbm-exynos4412.git Fix type cast Change-Id: I76585a1f8f6f2fb49dbe5c14facda147798788fb --- diff --git a/src/tbm_bufmgr_exynos4412.c b/src/tbm_bufmgr_exynos4412.c index cd6b28d..2ceabc2 100644 --- a/src/tbm_bufmgr_exynos4412.c +++ b/src/tbm_bufmgr_exynos4412.c @@ -305,7 +305,7 @@ _exynos4412_bo_handle (tbm_bo_exynos4412 bo_exynos4412, int device) getpid(), __FUNCTION__, __LINE__, bo_exynos4412->gem); return (tbm_bo_handle) NULL; } - bo_exynos4412->pBase = (void*)((uint64_t)arg.mapped); + bo_exynos4412->pBase = (void*)((unsigned int)arg.mapped); } bo_handle.ptr = (void *)bo_exynos4412->pBase;