From 15cbf73fc5501c9b717e57a36177ada8e52aa6f5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 16 Nov 2015 09:42:01 +0530 Subject: [PATCH] Remove duplicate macro definition --- src/calibre/utils/matcher.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calibre/utils/matcher.c b/src/calibre/utils/matcher.c index e96ecfe4f7..a06f468cf5 100644 --- a/src/calibre/utils/matcher.c +++ b/src/calibre/utils/matcher.c @@ -18,7 +18,6 @@ typedef unsigned char bool; #define TRUE 1 #define FALSE 0 -#define MIN(x, y) ((x < y) ? x : y) #define MAX(x, y) ((x > y) ? x : y) #define nullfree(x) if(x != NULL) free(x); x = NULL;