From: Richard W.M. Jones Date: Thu, 28 Feb 2008 11:01:17 +0000 (+0000) Subject: Typo. X-Git-Tag: LIBVIRT_0_4_1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26e12450bb9d08d5b52f1a8eafb1d539b2eac7af;p=thirdparty%2Flibvirt.git Typo. --- 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)