]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - mood.c
mood.c: Change type of rows from "void *" to "struct osl_row *".
[paraslash.git] / mood.c
diff --git a/mood.c b/mood.c
index d29b930a0be1e0e8c64024579ac3342102eaf941..19f5dc4dbcb4d4eb29803ff9e6bb844165e1095f 100644 (file)
--- a/mood.c
+++ b/mood.c
@@ -237,7 +237,7 @@ static int mm_is_set_score_function(const struct osl_row *row, void *bitnum)
 }
 
 /* returns 1 if row matches score item, -1 otherwise */
-static int add_item_score(const void *row, struct mood_item *item, long *score,
+static int add_item_score(const struct osl_row *row, struct mood_item *item, long *score,
                long *score_arg_sum)
 {
        int ret = 100;
@@ -255,7 +255,7 @@ static int add_item_score(const void *row, struct mood_item *item, long *score,
        return 1;
 }
 
-static int compute_mood_score(const void *row, long *result)
+static int compute_mood_score(const struct osl_row *row, long *result)
 {
        struct mood_item *item;
        int match = 0;
@@ -469,7 +469,7 @@ out:
        return ret;
 }
 
-static int load_mood(const void *row)
+static int load_mood(const struct osl_row *row)
 {
        int ret;
        struct mood *new_mood, *old_mood = current_mood;
@@ -651,7 +651,7 @@ static int del_afs_statistics(const struct osl_row *row)
 struct admissible_file_info
 {
        /** The admissible audio file. */
-       void *aft_row;
+       struct osl_row *aft_row;
        /** Its score. */
        long score;
 };
@@ -840,13 +840,13 @@ int mood_update_audio_file(const struct osl_row *aft_row, struct afs_info *old_a
        score += compute_num_played_score(&afsi);
        score += compute_last_played_score(&afsi);
        score /= 3;
-       PARA_NOTICE_LOG("score: %li\n", score);
+       PARA_DEBUG_LOG("score: %li\n", score);
        percent = (score + 100) / 3;
        if (percent > 100)
                percent = 100;
        else if (percent < 0)
                percent = 0;
-       PARA_NOTICE_LOG("re-inserting at %lu%%\n", percent);
+       PARA_DEBUG_LOG("re-inserting at %lu%%\n", percent);
        return score_update(aft_row, percent);
 }