X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/a182371d6986d9657898bcf871a533e816135e56..fd418816b985bb2848f113be80c3f59c344583c2:/lib/bitsetv.c diff --git a/lib/bitsetv.c b/lib/bitsetv.c index c9aea246..42e0a3d7 100644 --- a/lib/bitsetv.c +++ b/lib/bitsetv.c @@ -1,5 +1,5 @@ /* Bitset vectors. - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GCC. @@ -149,7 +149,7 @@ bitsetv_dump (FILE *file, char const *title, char const *subtitle, fprintf (file, "%s\n", title); for (i = 0; bsetv[i]; i++) { - fprintf (file, "%s %lu\n", subtitle, (unsigned long) i); + fprintf (file, "%s %lu\n", subtitle, (unsigned long int) i); bitset_dump (file, bsetv[i]); } @@ -164,7 +164,7 @@ debug_bitsetv (bitsetv bsetv) for (i = 0; bsetv[i]; i++) { - fprintf (stderr, "%lu: ", (unsigned long) i); + fprintf (stderr, "%lu: ", (unsigned long int) i); debug_bitset (bsetv[i]); }