]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core/automount: drop unecessary cast 19454/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 26 Apr 2021 21:54:32 +0000 (23:54 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 4 May 2021 12:57:49 +0000 (14:57 +0200)
src/core/automount.c

index f0fa5c8ca987ea5cc1fbe33c120f43030708a2f6..dc92f9c0e4456f0411affc27985081bb288f6fb9 100644 (file)
@@ -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);