summaryrefslogtreecommitdiff
path: root/intl/xsize.h
diff options
context:
space:
mode:
Diffstat (limited to 'intl/xsize.h')
-rw-r--r--intl/xsize.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intl/xsize.h b/intl/xsize.h
index b3023a7d..0b0cef8e 100644
--- a/intl/xsize.h
+++ b/intl/xsize.h
@@ -1,6 +1,6 @@
/* xsize.h -- Checked size_t computations.
- Copyright (C) 2003 Free Software Foundation, Inc.
+ Copyright (C) 2003, 2008 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published
@@ -95,7 +95,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)