From 60bec7766494b2f904658006dfc217d241f44ce8 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 4 Feb 2009 21:04:30 +0100 Subject: playlist_print: use bool instead of int Return true on success, instead of 0. Converted the "detail" parameter to bool. --- src/playlist_print.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/playlist_print.c') diff --git a/src/playlist_print.c b/src/playlist_print.c index 60696b772..c4a9c4f34 100644 --- a/src/playlist_print.c +++ b/src/playlist_print.c @@ -23,24 +23,24 @@ #include "database.h" #include "client.h" -int -spl_print(struct client *client, const char *name_utf8, int detail) +bool +spl_print(struct client *client, const char *name_utf8, bool detail) { GPtrArray *list; list = spl_load(name_utf8); if (list == NULL) - return -1; + return false; for (unsigned i = 0; i < list->len; ++i) { const char *temp = g_ptr_array_index(list, i); - int wrote = 0; + bool wrote = false; if (detail) { struct song *song = db_get_song(temp); if (song) { song_print_info(client, song); - wrote = 1; + wrote = true; } } @@ -50,5 +50,5 @@ spl_print(struct client *client, const char *name_utf8, int detail) } spl_free(list); - return 0; + return true; } -- cgit v1.2.3