From e969ec1d517a4cc9a613994b24423e2bdeeebe00 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Wed, 7 May 2025 02:31:46 +0900 Subject: [PATCH] sd-device: rename arguments To make it consistent with its declaration and other function prototypes. --- src/libsystemd/sd-device/device-private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsystemd/sd-device/device-private.h b/src/libsystemd/sd-device/device-private.h index dea7728633..7d609d1a41 100644 --- a/src/libsystemd/sd-device/device-private.h +++ b/src/libsystemd/sd-device/device-private.h @@ -63,7 +63,7 @@ int device_get_properties_strv(sd_device *device, char ***ret); int device_clone_with_db(sd_device *device, sd_device **ret); -int device_tag_index(sd_device *dev, sd_device *dev_old, bool add); +int device_tag_index(sd_device *device, sd_device *device_old, bool add); bool device_should_have_db(sd_device *device); int device_has_db(sd_device *device); int device_update_db(sd_device *device);