-$Id: CHANGES,v 1.235 2003/12/21 09:51:29 stelian Exp $
+$Id: CHANGES,v 1.236 2004/01/04 10:48:34 stelian Exp $
+
+Changes between versions 0.4b35 and 0.4b36 (released ?????????????????)
+=======================================================================
+
+1. Fixed dump compilation with old gcc versions. Thanks to
+ Mike Castle <dalgoda@users.sourceforge.net> for the patch.
Changes between versions 0.4b34 and 0.4b35 (released December 21, 2003)
=======================================================================
#ifndef lint
static const char rcsid[] =
- "$Id: main.c,v 1.88 2003/11/22 16:52:16 stelian Exp $";
+ "$Id: main.c,v 1.89 2004/01/04 10:48:35 stelian Exp $";
#endif /* not lint */
#include <config.h>
/* check for enough mem; initialize */
if ((ino/8 + 1) > iexclude_bitmap_bytes) {
if (iexclude_bitmap_bytes == 0) {
+ unsigned int j;
iexclude_bitmap_bytes = 2 * (ino/8 + 1);
iexclude_bitmap = (char*) malloc(iexclude_bitmap_bytes);
if (iexclude_bitmap == NULL) {
msg("allocating memory failed\n");
exit(X_STARTUP);
}
- unsigned int j;
for (j = 0; j < iexclude_bitmap_bytes; j++)
iexclude_bitmap[j] = 0;
}