X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=mood.c;h=e60ef2fd6fc97cac81d65e32431749dab3c935eb;hp=833820a8b2ff8f13108102f41f1d9578bd564c17;hb=5e9ded6843a720a4d234ba63143d14e05f4746b4;hpb=ab9f717f527fa0723e4f50c4bdeab39533738773 diff --git a/mood.c b/mood.c index 833820a8..e60ef2fd 100644 --- a/mood.c +++ b/mood.c @@ -477,16 +477,10 @@ static long compute_last_played_score(struct afs_info *afsi) static long compute_dynamic_score(const struct osl_row *aft_row) { struct afs_info afsi; - int64_t score, nscore = 0, lscore = 0; - int ret; - ret = get_afsi_of_row(aft_row, &afsi); - if (ret < 0) + if (get_afsi_of_row(aft_row, &afsi) < 0) return -100; - nscore = compute_num_played_score(&afsi); - lscore = compute_last_played_score(&afsi); - score = nscore + lscore; - return score; + return compute_num_played_score(&afsi) + compute_last_played_score(&afsi); } static int add_afs_statistics(const struct osl_row *row)