From ed9238b326b92263bfb11914258afddc8cdf79a2 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Sun, 17 Oct 2010 01:52:23 +0200 Subject: [PATCH] Fixed small typo. --- src/array.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/array.h b/src/array.h index 1094a17ada..053aa2be64 100644 --- a/src/array.h +++ b/src/array.h @@ -96,8 +96,8 @@ extern struct array *gc_internal_array; /* Special value used for cmpfuns to signify that two values aren't * equal and have no order relation, i.e. one is neither greater nor - * lesser than the other. It consists of the largest bit (under the - * sign bit) set. */ + * less than the other. It consists of the largest bit (under the sign + * bit) set. */ #define CMPFUN_UNORDERED (INT_MAX - (INT_MAX >> 1)) typedef int (*cmpfun)(const struct svalue *, const struct svalue *); -- GitLab