From 4b3997b432948fe08cc4e90cd37ba7174f0406d7 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Sun, 1 Jan 2023 20:18:02 -0800 Subject: [PATCH] The todo_... variables are not referenced elsewhere and can be static. --- src/gcrcell.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gcrcell.c b/src/gcrcell.c index cb0bf66..3b69ead 100644 --- a/src/gcrcell.c +++ b/src/gcrcell.c @@ -100,9 +100,9 @@ } \ } while (0) -unsigned todo_uses = 0; -unsigned todo_misses = 0; -unsigned todo_reads = 0; +static unsigned todo_uses = 0; +static unsigned todo_misses = 0; +static unsigned todo_reads = 0; /************************************************************************/ /* */