aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2011-03-28 13:24:57 +0300
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2011-04-11 13:22:31 +0300
commitbe813e5286535425d046e9b0b9c233650faa2cfc (patch)
treeec39a94d582daaf0c396967f4aef0f19a3afc4b4 /tests
parent713ef298e3d2055034c74e2a2e508e0eb1aad817 (diff)
fs-tests: integck: do not cast void pointers
The malloc function returns 'void *', so it is not necessary to cast it when assigning. This is just a small clean-up patch. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/fs-tests/integrity/integck.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/fs-tests/integrity/integck.c b/tests/fs-tests/integrity/integck.c
index a3f4130..b53f11d 100644
--- a/tests/fs-tests/integrity/integck.c
+++ b/tests/fs-tests/integrity/integck.c
@@ -153,7 +153,7 @@ static char *copy_string(const char *s)
if (!s)
return NULL;
- str = (char *) malloc(strlen(s) + 1);
+ str = malloc(strlen(s) + 1);
CHECK(str != NULL);
strcpy(str, s);
return str;
@@ -171,7 +171,7 @@ static char *cat_strings(const char *a, const char *b)
if (!a && !b)
return NULL;
sz = strlen(a) + strlen(b) + 1;
- str = (char *) malloc(sz);
+ str = malloc(sz);
CHECK(str != NULL);
strcpy(str, a);
strcat(str, b);
@@ -206,7 +206,7 @@ static char *cat_paths(const char *a, const char *b)
return cat_strings(a, b + 1);
sz = na + nb + 2;
- str = (char *) malloc(sz);
+ str = malloc(sz);
CHECK(str != NULL);
strcpy(str, a);
strcat(str, "/");
@@ -1286,7 +1286,7 @@ static void dir_check(struct dir_info *dir)
/* Create an array of entries */
sz = sizeof(struct dir_entry_info *);
n = dir->number_of_entries;
- entry_array = (struct dir_entry_info **) malloc(sz * n);
+ entry_array = malloc(sz * n);
CHECK(entry_array != NULL);
entry = dir->first;