From 4cbd8c2df7f3f81052a34e0c3db85da1cace234b Mon Sep 17 00:00:00 2001 From: Andrey Skvortsov Date: Sat, 29 Mar 2025 21:11:36 +0300 Subject: [PATCH] process_pipeline.c: remove unused static variable --- src/process_pipeline.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/process_pipeline.c b/src/process_pipeline.c index ec43373..70424de 100644 --- a/src/process_pipeline.c +++ b/src/process_pipeline.c @@ -44,7 +44,7 @@ static int output_buffer_height = -1; static bool flash_enabled; static int framecounter = 0; -static char capture_fname[255], movie_script[255]; +static char movie_script[255]; static GSettings *settings; @@ -790,7 +790,6 @@ process_image_for_preview(const uint8_t *image) static void format_timestamp(char *timestamp) { - static char capture_fname[255]; time_t rawtime; time(&rawtime); struct tm tim = *(localtime(&rawtime));