aboutsummaryrefslogtreecommitdiffstats
path: root/src/Daemon.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Daemon.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Daemon.hxx b/src/Daemon.hxx
index c662b9bee..ecd090d5b 100644
--- a/src/Daemon.hxx
+++ b/src/Daemon.hxx
@@ -20,14 +20,14 @@
#ifndef MPD_DAEMON_HXX
#define MPD_DAEMON_HXX
-class Path;
+class AllocatedPath;
#ifndef WIN32
void
-daemonize_init(const char *user, const char *group, Path &&pidfile);
+daemonize_init(const char *user, const char *group, AllocatedPath &&pidfile);
#else
static inline void
-daemonize_init(const char *user, const char *group, Path &&pidfile)
+daemonize_init(const char *user, const char *group, AllocatedPath &&pidfile)
{ (void)user; (void)group; (void)pidfile; }
#endif