From efee4efb5ba8833d14f75d7f389297164ef41aff Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 7 Mar 2022 22:38:20 +0100 Subject: [PATCH] score.c: Remove pointless assignment. The value is NULL anyway because the score table description was declared as a global static variable. --- score.c | 1 - 1 file changed, 1 deletion(-) 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)); } -- 2.39.5