changeset 9729:7ebb4a06fabd

Fix typo in comment.
author Atsushi SAKAI <sakaia@jp.fujitsu.com>
date Thu, 28 Feb 2008 15:26:44 +0100
parents f3b76d4b4922
children 7e9453488b08
files ChangeLog lib/xsize.h
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
+
+	* lib/xsize.h: Fix typo in comment: s/tupe/type/.
+
 2008-02-28  Bruno Haible  <bruno@clisp.org>
 
 	* modules/freadptr-tests: New file.
--- a/lib/xsize.h
+++ b/lib/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 General Public License as published by
@@ -94,7 +94,7 @@
 /* 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)