X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=playlist.c;h=8955ea9dc6793eb9d646c708f59313d6a41c3549;hp=826280b9270ff9bc8c9a37f46e376d69a1422671;hb=db0e72763ac5660b01c8c2db75901f4efa2c44cc;hpb=00581ce02d1b5391569c8f3fc7739274b31bacf8 diff --git a/playlist.c b/playlist.c index 826280b9..8955ea9d 100644 --- a/playlist.c +++ b/playlist.c @@ -41,12 +41,12 @@ static int add_playlist_entry(char *path, void *data) int ret = aft_get_row_of_path(path, &aft_row); if (ret < 0) { - PARA_NOTICE_LOG("%s: %s\n", path, PARA_STRERROR(-ret)); + PARA_NOTICE_LOG("%s: %s\n", path, para_strerror(-ret)); return 1; } ret = score_add(aft_row, -playlist->length); if (ret < 0) { - PARA_ERROR_LOG("failed to add %s: %s\n", path, PARA_STRERROR(-ret)); + PARA_ERROR_LOG("failed to add %s: %s\n", path, para_strerror(-ret)); return ret; } playlist->length++; @@ -80,7 +80,7 @@ static int load_playlist(struct osl_row *row, void *data) err: if (ret != -E_DUMMY_ROW) PARA_NOTICE_LOG("unable to load playlist (%s)\n", - PARA_STRERROR(-ret)); + para_strerror(-ret)); return 1; } @@ -91,7 +91,7 @@ static int check_playlist_path(char *path, void *data) int ret = aft_get_row_of_path(path, &aft_row); if (ret < 0) - para_printf(pb, "%s: %s\n", path, PARA_STRERROR(-ret)); + para_printf(pb, "%s: %s\n", path, para_strerror(-ret)); return 1; } @@ -104,7 +104,7 @@ static int check_playlist(struct osl_row *row, void *data) if (ret < 0) { para_printf(pb, "failed to get playlist data: %s\n", - PARA_STRERROR(-ret)); + para_strerror(-ret)); return 1; } if (*playlist_name) { /* skip dummy row */