+2001-01-02 Andreas Jaeger <aj@suse.de>
+
+ * sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Make
+ constant unsigned.
+
2001-01-01 Andreas Jaeger <aj@suse.de>
* inet/rcmd.c (rcmd_af): Use socklen_t for len.
/* Operating system support for run-time dynamic linker. Generic Unix version.
- Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1995,1996,1997,1998,2000,2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
#undef add
/* Now we are ready to install the string pointers and length. */
- for (n = 0; n < (1 << cnt); ++n)
+ for (n = 0; n < (1UL << cnt); ++n)
result[n].len = 0;
n = cnt;
do
/* The first half of the strings all include the first string. */
n = (1 << cnt) - 2;
rp = &result[2];
- while (n != (1 << (cnt - 1)))
+ while (n != (1UL << (cnt - 1)))
{
if ((n & 1) != 0)
rp[0].str = rp[-2].str + rp[-2].len;