aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEitan Adler <eadler@FreeBSD.org>2018-06-02 03:31:14 +0000
committerEitan Adler <eadler@FreeBSD.org>2018-06-02 03:31:14 +0000
commit3798694c01007ab7437a3184d24371680d466848 (patch)
tree30d487933aaa054cfb4168121b1f5d3bf857bb2f
parent0b2f6ed144f742a86ade461fa18dcc7b3bea3260 (diff)
downloadsrc-3798694c01007ab7437a3184d24371680d466848.tar.gz
src-3798694c01007ab7437a3184d24371680d466848.zip
top(1): avoid casting malloc
Notes
Notes: svn path=/head/; revision=334515
-rw-r--r--usr.bin/top/display.c12
-rw-r--r--usr.bin/top/machine.c4
2 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/top/display.c b/usr.bin/top/display.c
index c992a613eab3..fc301145722e 100644
--- a/usr.bin/top/display.c
+++ b/usr.bin/top/display.c
@@ -147,7 +147,7 @@ display_resize(void)
}
/* now, allocate space for the screen buffer */
- screenbuf = (char *)malloc(lines * display_width);
+ screenbuf = malloc(lines * display_width);
if (screenbuf == (char *)NULL)
{
/* oops! */
@@ -203,20 +203,20 @@ int display_init(struct statics * statics)
/* save pointers and allocate space for names */
procstate_names = statics->procstate_names;
num_procstates = string_count(procstate_names);
- lprocstates = (int *)malloc(num_procstates * sizeof(int));
+ lprocstates = malloc(num_procstates * sizeof(int));
cpustate_names = statics->cpustate_names;
swap_names = statics->swap_names;
num_swap = string_count(swap_names);
- lswap = (int *)malloc(num_swap * sizeof(int));
+ lswap = malloc(num_swap * sizeof(int));
num_cpustates = string_count(cpustate_names);
- lcpustates = (int *)malloc(num_cpustates * sizeof(int) * statics->ncpus);
- cpustate_columns = (int *)malloc(num_cpustates * sizeof(int));
+ lcpustates = malloc(num_cpustates * sizeof(int) * statics->ncpus);
+ cpustate_columns = malloc(num_cpustates * sizeof(int));
memory_names = statics->memory_names;
num_memory = string_count(memory_names);
- lmemory = (int *)malloc(num_memory * sizeof(int));
+ lmemory = malloc(num_memory * sizeof(int));
arc_names = statics->arc_names;
carc_names = statics->carc_names;
diff --git a/usr.bin/top/machine.c b/usr.bin/top/machine.c
index c168176177bd..66ecf5afb39f 100644
--- a/usr.bin/top/machine.c
+++ b/usr.bin/top/machine.c
@@ -990,7 +990,7 @@ format_next_process(caddr_t xhandle, char *(*get_userid)(int), int flags)
break;
}
- cmdbuf = (char *)malloc(cmdlen + 1);
+ cmdbuf = malloc(cmdlen + 1);
if (cmdbuf == NULL) {
warn("malloc(%d)", cmdlen + 1);
return NULL;
@@ -1025,7 +1025,7 @@ format_next_process(caddr_t xhandle, char *(*get_userid)(int), int flags)
size_t len;
argbuflen = cmdlen * 4;
- argbuf = (char *)malloc(argbuflen + 1);
+ argbuf = malloc(argbuflen + 1);
if (argbuf == NULL) {
warn("malloc(%zu)", argbuflen + 1);
free(cmdbuf);