summaryrefslogtreecommitdiff
path: root/src/stats.c
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2025-06-08 11:43:25 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2025-06-08 11:43:25 +0200
commit426400e7f6c9ac9088fc66c7c683ed9251fc8789 (patch)
tree89fb08ec72b6c10bd5dd96caa508562610fa851a /src/stats.c
parent4a3c7d6ceb367c923faa521c20f765302096bfae (diff)
downloadcataract-master.tar.xz
build: Fix global variables declarationHEADmaster
Diffstat (limited to 'src/stats.c')
-rw-r--r--src/stats.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stats.c b/src/stats.c
index 8469225..f858fff 100644
--- a/src/stats.c
+++ b/src/stats.c
@@ -21,6 +21,10 @@
#include "stats.h"
+int stats_errors = 0;
+int stats_dirs = 0;
+int stats_images = 0;
+
G_LOCK_DEFINE_STATIC (stats_errors);
G_LOCK_DEFINE_STATIC (stats_dirs);