diff options
author | Max Kellermann <max@duempel.org> | 2012-08-29 20:17:13 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-08-29 20:17:13 +0200 |
commit | 04a9dec9525a58d077da71a84655cb45b7838520 (patch) | |
tree | a86127d5b42bf35cac006afa07afc087f9be8e6c /src/PlaylistPrint.cxx | |
parent | 6ee76b7154a55b6bd12a4b695faed2bf49c2a5d5 (diff) | |
download | mpd-04a9dec9525a58d077da71a84655cb45b7838520.tar.gz mpd-04a9dec9525a58d077da71a84655cb45b7838520.tar.xz mpd-04a9dec9525a58d077da71a84655cb45b7838520.zip |
playlist_print: rename to PlaylistPrint.cxx
Diffstat (limited to '')
-rw-r--r-- | src/PlaylistPrint.cxx (renamed from src/playlist_print.c) | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/playlist_print.c b/src/PlaylistPrint.cxx index b1b689893..9ff7f270e 100644 --- a/src/playlist_print.c +++ b/src/PlaylistPrint.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2012 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -18,7 +18,9 @@ */ #include "config.h" -#include "playlist_print.h" +#include "PlaylistPrint.hxx" + +extern "C" { #include "playlist_list.h" #include "playlist_plugin.h" #include "playlist_any.h" @@ -31,6 +33,7 @@ #include "database.h" #include "client.h" #include "input_stream.h" +} void playlist_print_uris(struct client *client, const struct playlist *playlist) @@ -120,7 +123,7 @@ spl_print(struct client *client, const char *name_utf8, bool detail, return false; for (unsigned i = 0; i < list->len; ++i) { - const char *temp = g_ptr_array_index(list, i); + const char *temp = (const char *)g_ptr_array_index(list, i); bool wrote = false; if (detail) { |