From eb79d39138d36f6f184eb30187646df1226cac67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 10 Jan 2022 12:02:03 +0100 Subject: xdg-autostart-generator: make parameter const --- src/xdg-autostart-generator/xdg-autostart-service.c | 2 +- src/xdg-autostart-generator/xdg-autostart-service.h | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'src/xdg-autostart-generator') diff --git a/src/xdg-autostart-generator/xdg-autostart-service.c b/src/xdg-autostart-generator/xdg-autostart-service.c index 241a5b3cfd..3fd1f4bbf2 100644 --- a/src/xdg-autostart-generator/xdg-autostart-service.c +++ b/src/xdg-autostart-generator/xdg-autostart-service.c @@ -502,7 +502,7 @@ static int xdg_autostart_generate_desktop_condition( } int xdg_autostart_service_generate_unit( - XdgAutostartService *service, + const XdgAutostartService *service, const char *dest) { _cleanup_free_ char *path_escaped = NULL, *exec_start = NULL, *unit = NULL; diff --git a/src/xdg-autostart-generator/xdg-autostart-service.h b/src/xdg-autostart-generator/xdg-autostart-service.h index 2641718899..61a4a7304d 100644 --- a/src/xdg-autostart-generator/xdg-autostart-service.h +++ b/src/xdg-autostart-generator/xdg-autostart-service.h @@ -26,7 +26,6 @@ typedef struct XdgAutostartService { } XdgAutostartService; - XdgAutostartService * xdg_autostart_service_free(XdgAutostartService *s); DEFINE_TRIVIAL_CLEANUP_FUNC(XdgAutostartService*, xdg_autostart_service_free); @@ -34,4 +33,4 @@ char *xdg_autostart_service_translate_name(const char *name); int xdg_autostart_format_exec_start(const char *exec, char **ret_exec_start); XdgAutostartService *xdg_autostart_service_parse_desktop(const char *path); -int xdg_autostart_service_generate_unit(XdgAutostartService *service, const char *dest); +int xdg_autostart_service_generate_unit(const XdgAutostartService *service, const char *dest); -- cgit v1.2.1