Fix type cast 47/52347/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 17 Dec 2014 10:19:20 +0000 (19:19 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Mon, 23 Nov 2015 04:43:20 +0000 (13:43 +0900)
Change-Id: I76585a1f8f6f2fb49dbe5c14facda147798788fb

src/tbm_bufmgr_exynos4412.c

index cd6b28d..2ceabc2 100644 (file)
@@ -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;