From: Urban Wallasch Date: Sat, 5 Jun 2021 17:06:51 +0000 (+0200) Subject: * Tweaked default value for blur parameter. X-Git-Url: https://git.packet-gain.de/?a=commitdiff_plain;h=851eef61f201f8461de38e4fe7553d1a8ccfb59a;p=imgdupe.git * Tweaked default value for blur parameter. * Removed cruft from Makefile. --- diff --git a/Makefile b/Makefile index dd519c9..b2a62db 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ LIBS := -lpthread $(shell pkg-config --libs GraphicsMagickWand) STRIP := strip RM := rm -f -.PHONY: all clean distclean +.PHONY: all clean all: $(BIN) @@ -33,9 +33,6 @@ $(BIN): $(OBJ) $(SELF) clean: $(RM) $(BIN) $(OBJ) $(DEP) -distclean: clean - $(RM) config.h - -include $(DEP) # EOF diff --git a/main.c b/main.c index 2a82483..ee2db12 100644 --- a/main.c +++ b/main.c @@ -30,7 +30,7 @@ static struct { .db_outfile = NULL, .db_prune = 0, .rescan = 0, - .blur = 1.5, + .blur = 2.5, .thresh = 256, .max_fd = 1000, .nthreads = 4,