diff options
Diffstat (limited to 'src/region-cache.c')
-rw-r--r-- | src/region-cache.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/region-cache.c b/src/region-cache.c index 2642e824680..a3a2a072c8c 100644 --- a/src/region-cache.c +++ b/src/region-cache.c @@ -132,15 +132,13 @@ static void revalidate_region_cache (struct buffer *buf, struct region_cache *c) struct region_cache * new_region_cache (void) { - struct region_cache *c - = (struct region_cache *) xmalloc (sizeof (struct region_cache)); + struct region_cache *c = xmalloc (sizeof (struct region_cache)); c->gap_start = 0; c->gap_len = NEW_CACHE_GAP; c->cache_len = 0; - c->boundaries = - (struct boundary *) xmalloc ((c->gap_len + c->cache_len) - * sizeof (*c->boundaries)); + c->boundaries = xmalloc ((c->gap_len + c->cache_len) + * sizeof (*c->boundaries)); c->beg_unchanged = 0; c->end_unchanged = 0; |