From 1d0ed902518a437540e6bd52c1d6fee1faec2f95 Mon Sep 17 00:00:00 2001 From: Changyeon Lee Date: Wed, 16 Aug 2023 20:48:42 +0900 Subject: [PATCH] tbm_module: Remove unused argument of log Change-Id: I5c1bdfa3f91663d29d7471036d1269dd27f53df9 --- src/tbm_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1