From 26e12450bb9d08d5b52f1a8eafb1d539b2eac7af Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 28 Feb 2008 11:01:17 +0000 Subject: [PATCH] Typo. --- gnulib/lib/xsize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnulib/lib/xsize.h b/gnulib/lib/xsize.h index 65356bb6c1..5083859ad9 100644 --- a/gnulib/lib/xsize.h +++ b/gnulib/lib/xsize.h @@ -94,7 +94,7 @@ xmax (size_t size1, size_t size2) /* Multiplication of a count with an element size, with overflow check. The count must be >= 0 and the element size must be > 0. This is a macro, not an inline function, so that it works correctly even - when N is of a wider tupe and N > SIZE_MAX. */ + when N is of a wider type and N > SIZE_MAX. */ #define xtimes(N, ELSIZE) \ ((N) <= SIZE_MAX / (ELSIZE) ? (size_t) (N) * (ELSIZE) : SIZE_MAX) -- 2.47.2