summaryrefslogtreecommitdiffstats
path: root/libblkid/src/cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'libblkid/src/cache.c')
-rw-r--r--libblkid/src/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libblkid/src/cache.c b/libblkid/src/cache.c
index b576df8b4..c6d02a48b 100644
--- a/libblkid/src/cache.c
+++ b/libblkid/src/cache.c
@@ -102,7 +102,7 @@ int blkid_get_cache(blkid_cache *ret_cache, const char *filename)
DBG(CACHE, ul_debug("creating blkid cache (using %s)",
filename ? filename : "default cache"));
- if (!(cache = (blkid_cache) calloc(1, sizeof(struct blkid_struct_cache))))
+ if (!(cache = calloc(1, sizeof(struct blkid_struct_cache))))
return -BLKID_ERR_MEM;
INIT_LIST_HEAD(&cache->bic_devs);