From 1ef72d4c554ba2b838adacdf89ed91139c2a8931 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 7 Mar 2022 22:25:24 +0100 Subject: [PATCH] score.c: Shorten documentation of get_score_of_row(). This function is static, and its implementation is shorter than its documentation, which mostly consists of pointless boilerplate text. --- score.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/score.c b/score.c index 98358933..43b788e5 100644 --- a/score.c +++ b/score.c @@ -92,16 +92,7 @@ int get_num_admissible_files(unsigned *num) return osl(osl_get_num_rows(score_table, num)); } -/** - * Get the score of the audio file associated with given row of the score table. - * - * \param score_row Pointer to the row in the score table. - * \param score Result is returned here on success. - * - * On errors (negative return value) the content of \a score is undefined. - * - * \return The return value of the underlying call to osl_get_object(). - */ +/* On errors (negative return value) the content of score is undefined. */ static int get_score_of_row(void *score_row, long *score) { struct osl_object obj; -- 2.39.2