diff options
Diffstat (limited to '')
-rw-r--r-- | src/ClientList.cxx (renamed from src/client_list.c) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client_list.c b/src/ClientList.cxx index 2c7f37aff..0e4876f85 100644 --- a/src/client_list.c +++ b/src/ClientList.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -18,7 +18,7 @@ */ #include "config.h" -#include "client_internal.h" +#include "ClientInternal.hxx" #include <assert.h> @@ -42,7 +42,7 @@ client_list_get_first(void) { assert(clients != NULL); - return clients->data; + return (struct client *)clients->data; } void |