From: Changyeon Lee Date: Wed, 16 Aug 2023 11:48:42 +0000 (+0900) Subject: tbm_module: Remove unused argument of log X-Git-Tag: accepted/tizen/unified/20230818.054607~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d0ed902518a437540e6bd52c1d6fee1faec2f95;p=platform%2Fcore%2Fuifw%2Flibtbm.git tbm_module: Remove unused argument of log Change-Id: I5c1bdfa3f91663d29d7471036d1269dd27f53df9 --- diff --git a/src/tbm_module.c b/src/tbm_module.c index d1305bb..8d4a955 100644 --- a/src/tbm_module.c +++ b/src/tbm_module.c @@ -523,7 +523,7 @@ tbm_module_bind_native_display(tbm_module *module, void *native_display) } else { // make the wayland server socket for sending the authenticated drm_fd to wayland clients. if (!tbm_drm_helper_wl_auth_server_init(native_display, fd, NULL, 0)) { - TBM_ERR("error: tbm_drm_helper_wl_auth_server_init failed\n", module, native_display); + TBM_ERR("error: tbm_drm_helper_wl_auth_server_init failed\n"); close(fd); return TBM_ERROR_INVALID_OPERATION; }