]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
score.c: Remove pointless assignment.
authorAndre Noll <maan@tuebingen.mpg.de>
Mon, 7 Mar 2022 21:38:20 +0000 (22:38 +0100)
committerAndre Noll <maan@tuebingen.mpg.de>
Mon, 17 Oct 2022 18:36:21 +0000 (20:36 +0200)
The value is NULL anyway because the score table description was
declared as a global static variable.

score.c

diff --git a/score.c b/score.c
index 54af56f7c60100ad65ac09cafb52e7769514c958..8aa547ef531fe2e8f16a6248d5c3827470fe1ed9 100644 (file)
--- 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));
 }