summaryrefslogtreecommitdiffstats
path: root/src/xdg-autostart-generator/xdg-autostart-service.h
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-01-10 12:02:03 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-01-10 12:09:35 +0100
commiteb79d39138d36f6f184eb30187646df1226cac67 (patch)
tree16c94aad863b67fca5a6e41d35acef79d4ca6205 /src/xdg-autostart-generator/xdg-autostart-service.h
parentunits: start systemd-resolved in basic.target (diff)
downloadsystemd-eb79d39138d36f6f184eb30187646df1226cac67.tar.xz
systemd-eb79d39138d36f6f184eb30187646df1226cac67.zip
xdg-autostart-generator: make parameter const
Diffstat (limited to 'src/xdg-autostart-generator/xdg-autostart-service.h')
-rw-r--r--src/xdg-autostart-generator/xdg-autostart-service.h3
1 files changed, 1 insertions, 2 deletions
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);