aboutsummaryrefslogtreecommitdiff
path: root/gnulib
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2008-02-28 11:01:17 +0000
committerRichard W.M. Jones <rjones@redhat.com>2008-02-28 11:01:17 +0000
commit26e12450bb9d08d5b52f1a8eafb1d539b2eac7af (patch)
treecc8e07f59022159cc4a3bd242f23a08de14c899e /gnulib
parentSet MAC address on TUN device for Xenner compatability (diff)
downloadlibvirt-26e12450bb9d08d5b52f1a8eafb1d539b2eac7af.tar.gz
libvirt-26e12450bb9d08d5b52f1a8eafb1d539b2eac7af.tar.bz2
libvirt-26e12450bb9d08d5b52f1a8eafb1d539b2eac7af.zip
Typo.
Diffstat (limited to 'gnulib')
-rw-r--r--gnulib/lib/xsize.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnulib/lib/xsize.h b/gnulib/lib/xsize.h
index 65356bb6c..5083859ad 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)