This reapplies xalloc_cast.cocci across the whole src/ tree.
---
 src/cpuset.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cpuset.c b/src/cpuset.c
index 82e350f132..a20b81a25d 100644
--- a/src/cpuset.c
+++ b/src/cpuset.c
@@ -280,7 +280,7 @@ int cpu_map_configured(void)
 static int cpuset_alloc(void)
 {
        /* allocate the structures used to store CPU topology info */
-       cpu_map = (struct cpu_map*)calloc(MAX_TGROUPS, sizeof(*cpu_map));
+       cpu_map = calloc(MAX_TGROUPS, sizeof(*cpu_map));
        if (!cpu_map)
                return 0;
 
-- 
2.43.2


Reply via email to