From: Andre Noll Date: Mon, 7 Mar 2022 21:38:20 +0000 (+0100) Subject: score.c: Remove pointless assignment. X-Git-Tag: v0.7.2~14^2~29 X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=efee4efb5ba8833d14f75d7f389297164ef41aff;p=paraslash.git score.c: Remove pointless assignment. The value is NULL anyway because the score table description was declared as a global static variable. --- diff --git a/score.c b/score.c index 54af56f7..8aa547ef 100644 --- a/score.c +++ b/score.c @@ -307,7 +307,6 @@ static void score_close(void) static int score_open(__a_unused const char *dir) { - score_table_desc.dir = NULL; /* this table has only volatile columns */ return osl(osl_open_table(&score_table_desc, &score_table)); }