From cb17d98e7a5d7a6abc487fb34b131cac9dac1965 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 27 Sep 2008 20:44:30 +0000 Subject: [PATCH] Update from gnulib. --- gettext-runtime/intl/ChangeLog | 4 ++++ gettext-runtime/intl/xsize.h | 4 ++-- gettext-runtime/libasprintf/ChangeLog | 4 ++++ gettext-runtime/libasprintf/xsize.h | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/gettext-runtime/intl/ChangeLog b/gettext-runtime/intl/ChangeLog index e361d17e3..5a8e3772d 100644 --- a/gettext-runtime/intl/ChangeLog +++ b/gettext-runtime/intl/ChangeLog @@ -93,6 +93,10 @@ * vasnprintf.c (VASNPRINTF): When performing zero-padding, use spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO. +2008-02-28 Atsushi SAKAI + + * lib/xsize.h: Fix typo in comment: s/tupe/type/. + 2008-02-07 Bruno Haible * vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems. diff --git a/gettext-runtime/intl/xsize.h b/gettext-runtime/intl/xsize.h index b3023a7d4..0b0cef8e4 100644 --- a/gettext-runtime/intl/xsize.h +++ b/gettext-runtime/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) diff --git a/gettext-runtime/libasprintf/ChangeLog b/gettext-runtime/libasprintf/ChangeLog index 7ad3d4638..f50235efa 100644 --- a/gettext-runtime/libasprintf/ChangeLog +++ b/gettext-runtime/libasprintf/ChangeLog @@ -93,6 +93,10 @@ * vasnprintf.c (VASNPRINTF): When performing zero-padding, use spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO. +2008-02-28 Atsushi SAKAI + + * xsize.h: Fix typo in comment: s/tupe/type/. + 2008-02-07 Bruno Haible * vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems. diff --git a/gettext-runtime/libasprintf/xsize.h b/gettext-runtime/libasprintf/xsize.h index b3023a7d4..0b0cef8e4 100644 --- a/gettext-runtime/libasprintf/xsize.h +++ b/gettext-runtime/libasprintf/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) -- 2.47.2