From 5afb90bedffb87afc8c47f196c3690a9b34d3df7 Mon Sep 17 00:00:00 2001 From: tTh Date: Thu, 21 Mar 2024 16:10:39 +0100 Subject: [PATCH] small clean --- Fonderie/fifo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Fonderie/fifo.c b/Fonderie/fifo.c index a58d9000..a6ae6cff 100644 --- a/Fonderie/fifo.c +++ b/Fonderie/fifo.c @@ -87,7 +87,7 @@ return 0; */ int export_fifo(char *fname, int notused) { -int foo, type; +int foo; #if DEBUG_LEVEL fprintf(stderr, ">>> %s ( '%s' %d )\n", __func__, fname, notused); @@ -118,7 +118,7 @@ return 0; int insert_picture(FloatImg *src) { FloatImg *dst; -int nbre, foo; +int nbre; #if DEBUG_LEVEL fprintf(stderr, ">>> %s ( %p )\n", __func__, src);