--- embedaddon/libiconv/gnulib-local/lib/xalloc.h 2012/02/21 22:57:48 1.1.1.1
+++ embedaddon/libiconv/gnulib-local/lib/xalloc.h 2021/03/17 13:38:46 1.1.1.3
@@ -13,7 +13,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program. If not, see . */
+ along with this program. If not, see . */
#ifndef _XALLOC_H
#define _XALLOC_H
@@ -84,8 +84,8 @@ extern void xalloc_die (void)
known at compile-time. */
# define XNMALLOC(N,T) \
((T *) (sizeof (T) == 1 \
- ? xmalloc (N) \
- : xnboundedmalloc(N, (size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / sizeof (T), sizeof (T))))
+ ? xmalloc (N) \
+ : xnboundedmalloc(N, (size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / sizeof (T), sizeof (T))))
static inline void *
xnboundedmalloc (size_t n, size_t bound, size_t s)
{