diff options
-rw-r--r-- | src/Makefile.am | 4 | ||||
-rw-r--r-- | src/command.c | 2 | ||||
-rw-r--r-- | src/dbUtils.c | 2 | ||||
-rw-r--r-- | src/playlist.c | 2 | ||||
-rw-r--r-- | src/stored_playlist.c (renamed from src/storedPlaylist.c) | 2 | ||||
-rw-r--r-- | src/stored_playlist.h (renamed from src/storedPlaylist.h) | 4 |
6 files changed, 8 insertions, 8 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 56360812a..17234ca30 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -96,7 +96,7 @@ mpd_headers = \ ioops.h \ zeroconf.h \ locate.h \ - storedPlaylist.h \ + stored_playlist.h \ timer.h @@ -171,7 +171,7 @@ mpd_SOURCES = \ volume.c \ utf8.c \ locate.c \ - storedPlaylist.c \ + stored_playlist.c \ timer.c if HAVE_ID3TAG diff --git a/src/command.c b/src/command.c index f222d4b8d..45daa8fad 100644 --- a/src/command.c +++ b/src/command.c @@ -30,7 +30,7 @@ #include "buffer2array.h" #include "log.h" #include "utils.h" -#include "storedPlaylist.h" +#include "stored_playlist.h" #include "sllist.h" #include "ack.h" #include "audio.h" diff --git a/src/dbUtils.c b/src/dbUtils.c index 8f063f254..6092c7481 100644 --- a/src/dbUtils.c +++ b/src/dbUtils.c @@ -28,7 +28,7 @@ #include "tag.h" #include "strset.h" #include "log.h" -#include "storedPlaylist.h" +#include "stored_playlist.h" #include <glib.h> diff --git a/src/playlist.c b/src/playlist.c index 08a8203f5..404e8ade6 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -32,7 +32,7 @@ #include "path.h" #include "utils.h" #include "state_file.h" -#include "storedPlaylist.h" +#include "stored_playlist.h" #include "ack.h" #include "idle.h" #include "os_compat.h" diff --git a/src/storedPlaylist.c b/src/stored_playlist.c index fb0027599..73362cae1 100644 --- a/src/storedPlaylist.c +++ b/src/stored_playlist.c @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "storedPlaylist.h" +#include "stored_playlist.h" #include "playlist_save.h" #include "song.h" #include "mapper.h" diff --git a/src/storedPlaylist.h b/src/stored_playlist.h index 575ca84f4..e0d204e23 100644 --- a/src/storedPlaylist.h +++ b/src/stored_playlist.h @@ -16,8 +16,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef STORED_PLAYLIST_H -#define STORED_PLAYLIST_H +#ifndef MPD_STORED_PLAYLIST_H +#define MPD_STORED_PLAYLIST_H #include "list.h" #include "playlist.h" |