diff options
Diffstat (limited to 'isofs')
-rw-r--r-- | isofs/ChangeLog | 4 | ||||
-rw-r--r-- | isofs/lookup.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/isofs/ChangeLog b/isofs/ChangeLog index 35761f0f..728df807 100644 --- a/isofs/ChangeLog +++ b/isofs/ChangeLog @@ -1,3 +1,7 @@ +2001-01-07 Marcus Brinkmann <marcus@gnu.org> + + * lookup.c: Make diskfs_dirstat_size const. + 2000-12-21 Marcus Brinkmann <marcus@gnu.org> * rr.c (rrip_work): Use strdup instead malloc and strcpy. diff --git a/isofs/lookup.c b/isofs/lookup.c index e6ee692f..8a0777e4 100644 --- a/isofs/lookup.c +++ b/isofs/lookup.c @@ -410,7 +410,7 @@ diskfs_get_directs (struct node *dp, } /* We have no dirstats at all. */ -size_t diskfs_dirstat_size = 0; +const size_t diskfs_dirstat_size = 0; void diskfs_null_dirstat (struct dirstat *ds) |