From: Zbigniew Jędrzejewski-Szmek Date: Mon, 26 Apr 2021 21:54:32 +0000 (+0200) Subject: core/automount: drop unecessary cast X-Git-Tag: v249-rc1~302^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=edb83bceec11986ce7a50174a7b4798d0e2383b9;p=thirdparty%2Fsystemd.git core/automount: drop unecessary cast --- 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);