From: Paul Eggert Date: Mon, 20 Feb 2012 21:03:34 +0000 (-0800) Subject: regex: fix typo in definition of MIN X-Git-Tag: v0.1~1142 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=54fd689b28b2f0292dfd7ca459308e0e6a008a40;p=gnulib.git regex: fix typo in definition of MIN * lib/regex_internal.h (MIN): Fix typo. Problem reported by Thomas Schwinge in . --- diff --git a/ChangeLog b/ChangeLog index 1577313b6..444422e49 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-02-20 Paul Eggert + + regex: fix typo in definition of MIN + * lib/regex_internal.h (MIN): Fix typo. Problem reported by Thomas + Schwinge in . + 2012-02-19 Paul Eggert Bruno Haible diff --git a/lib/regex_internal.h b/lib/regex_internal.h index 85855e021..2b9f69756 100644 --- a/lib/regex_internal.h +++ b/lib/regex_internal.h @@ -470,7 +470,7 @@ static unsigned int re_string_context_at (const re_string_t *input, Idx idx, # define MAX(a,b) ((a) < (b) ? (b) : (a)) #endif #ifndef MIN -# define MIN(a,b) ((a) < (b) ? (b) : (a)) +# define MIN(a,b) ((a) < (b) ? (a) : (b)) #endif #define re_malloc(t,n) ((t *) malloc ((n) * sizeof (t)))