Deleted Added
full compact
49c49
< __FBSDID("$FreeBSD: head/usr.bin/du/du.c 128772 2004-04-30 18:17:51Z kientzle $");
---
> __FBSDID("$FreeBSD: head/usr.bin/du/du.c 128806 2004-05-01 21:47:31Z kientzle $");
313d312
< static const size_t links_hash_initial_size = 8192;
315,319c314,318
< struct links_entry *next;
< struct links_entry *previous;
< int links;
< dev_t dev;
< ino_t ino;
---
> struct links_entry *next;
> struct links_entry *previous;
> int links;
> dev_t dev;
> ino_t ino;
321,325c320,330
< static unsigned long number_entries;
< static size_t number_buckets;
< static struct links_entry **buckets;
< static struct links_entry *free_list;
< static char stop_allocating;
---
> static const size_t links_hash_initial_size = 8192;
> static struct links_entry **buckets;
> static struct links_entry *free_list;
> static size_t number_buckets;
> static unsigned long number_entries;
> static char stop_allocating;
> struct links_entry *le, **new_buckets;
> struct stat *st;
> size_t i, new_size;
> int count;
> int hash;
327,331d331
< struct links_entry *le, **new_buckets;
< struct stat *st;
< int hash;
< size_t i, new_size;
<
339c339
< err(1, "No memory for hardlink detection.");
---
> errx(1, "No memory for hardlink detection.");
346d345
< int count;
364,366c363
< warnc(ENOMEM, "No more memory for recording "
< "hard links; Remaining hard links will be "
< "counted as separate files.");
---
> warnx("No more memory for tracking hard links.");
434,436c431
< warnc(ENOMEM, "No more memory for recording "
< "hard links; Remaining hard links will be counted "
< "as separate files.");
---
> warnx("No more memory for tracking hard links.");