From 0b1ad27ba8ecb8799e2a34ecad9206619cb8d14e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 29 Dec 2013 13:47:23 +0100 Subject: [PATCH] Daemon: fix typo in cast --- src/Daemon.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Daemon.cxx b/src/Daemon.cxx index 4f214517e..088e7926d 100644 --- a/src/Daemon.cxx +++ b/src/Daemon.cxx @@ -52,7 +52,7 @@ static char *user_name; static uid_t user_uid = (uid_t)-1; /** the Unix group id which MPD runs as */ -static gid_t user_gid = (pid_t)-1; +static gid_t user_gid = (gid_t)-1; /** the absolute path of the pidfile */ static AllocatedPath pidfile = AllocatedPath::Null();