]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Typo.
authorRichard W.M. Jones <rjones@redhat.com>
Thu, 28 Feb 2008 11:01:17 +0000 (11:01 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Thu, 28 Feb 2008 11:01:17 +0000 (11:01 +0000)
gnulib/lib/xsize.h

index 65356bb6c1bca31dde646026c34f5dd3dfb74aad..5083859ad997c1d0236938238e0cd8faee492796 100644 (file)
@@ -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)