aboutsummaryrefslogtreecommitdiffstats
path: root/src/dbUtils.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-10-07 22:06:59 +0200
committerMax Kellermann <max@duempel.org>2008-10-07 22:06:59 +0200
commite19f6905d9c209d7587177dbfdbc58869a2167cc (patch)
treecd48ac5c2df14517351de7fa00b4e30d316deca6 /src/dbUtils.c
parent0d34815f6cfe1a75467e7c8f9406ff15bcbe10ba (diff)
downloadmpd-e19f6905d9c209d7587177dbfdbc58869a2167cc.tar.gz
mpd-e19f6905d9c209d7587177dbfdbc58869a2167cc.tar.xz
mpd-e19f6905d9c209d7587177dbfdbc58869a2167cc.zip
song: replace printSong* with song_print_*
This make argument order more consistent for iterators. Additionally, these now return ssize_t results for error checking.
Diffstat (limited to 'src/dbUtils.c')
-rw-r--r--src/dbUtils.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/dbUtils.c b/src/dbUtils.c
index ac324062f..29e92494e 100644
--- a/src/dbUtils.c
+++ b/src/dbUtils.c
@@ -68,7 +68,7 @@ static int printDirectoryInDirectory(Directory * directory, void *data)
static int printSongInDirectory(Song * song, mpd_unused void *data)
{
struct client *client = data;
- printSongUrl(client, song);
+ song_print_url(client, song);
return 0;
}
@@ -83,7 +83,7 @@ static int searchInDirectory(Song * song, void *_data)
LocateTagItemArray *array = &data->array;
if (strstrSearchTags(song, array->numItems, array->items))
- printSongInfo(data->client, song);
+ song_print_info(data->client, song);
return 0;
}
@@ -124,7 +124,7 @@ static int findInDirectory(Song * song, void *_data)
LocateTagItemArray *array = &data->array;
if (tagItemsFoundAndMatches(song, array->numItems, array->items))
- printSongInfo(data->client, song);
+ song_print_info(data->client, song);
return 0;
}
@@ -221,8 +221,8 @@ int addAllInToStoredPlaylist(const char *name, const char *utf8file)
static int directoryPrintSongInfo(Song * song, void *data)
{
struct client *client = data;
-
- return printSongInfo(client, song);
+ song_print_info(client, song);
+ return 0;
}
static int sumSongTime(Song * song, void *data)
@@ -285,7 +285,7 @@ static void visitTag(struct client *client, struct strset *set,
struct tag *tag = song->tag;
if (tagType == LOCATE_TAG_FILE_TYPE) {
- printSongUrl(client, song);
+ song_print_url(client, song);
return;
}