From edb83bceec11986ce7a50174a7b4798d0e2383b9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 26 Apr 2021 23:54:32 +0200 Subject: [PATCH] core/automount: drop unecessary cast --- src/core/automount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/automount.c b/src/core/automount.c index f0fa5c8ca98..dc92f9c0e44 100644 --- a/src/core/automount.c +++ b/src/core/automount.c @@ -651,7 +651,7 @@ fail: static void *expire_thread(void *p) { struct autofs_dev_ioctl param; - _cleanup_(expire_data_freep) struct expire_data *data = (struct expire_data*)p; + _cleanup_(expire_data_freep) struct expire_data *data = p; int r; assert(data->dev_autofs_fd >= 0); -- 2.47.3