From 8a3913ac6baf6df17c7523e2adbd7aff35ba18c5 Mon Sep 17 00:00:00 2001 From: guyuanzhang Date: Tue, 15 Jun 2021 17:03:31 +0800 Subject: [PATCH] Description:fix wms code clean Sig:graphic Feature or Bugfix:Feature Binary Source:No Signed-off-by: guyuanzhang --- services/wms/lite_wms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/wms/lite_wms.cpp b/services/wms/lite_wms.cpp index 47fd9b7..83452dd 100755 --- a/services/wms/lite_wms.cpp +++ b/services/wms/lite_wms.cpp @@ -82,7 +82,7 @@ int32_t LiteWMS::SurfaceRequestHandler(const IpcContext* context, void* ipcMsg, { uint32_t code; (void)GetCode(ipcMsg, &code); - LiteWindow* window = (LiteWindow*)arg; + LiteWindow* window = reinterpret_cast(arg); if (code == 0) { GRAPHIC_LOGI("requestBuffer"); window->UpdateBackBuf(); -- Gitee