summaryrefslogtreecommitdiffstats
path: root/lib/setproctitle.c
diff options
context:
space:
mode:
authorRuediger Meier2016-02-26 11:10:24 +0100
committerRuediger Meier2016-03-07 23:29:27 +0100
commitfea1cbf7484df23a6fe0b62ccd1de271bc1f931a (patch)
tree047a4504053a7b449bce7695346a3f7edf78a068 /lib/setproctitle.c
parentlibfdisk: remove ifdef HDIO_GETGEO (diff)
downloadkernel-qcow2-util-linux-fea1cbf7484df23a6fe0b62ccd1de271bc1f931a.tar.gz
kernel-qcow2-util-linux-fea1cbf7484df23a6fe0b62ccd1de271bc1f931a.tar.xz
kernel-qcow2-util-linux-fea1cbf7484df23a6fe0b62ccd1de271bc1f931a.zip
misc: never cast void* from malloc(3) and friends
Such cast could hide serious compiler warnings in case we are missing includes (e.g. <stdlib.h> or "xalloc.h"). See http://stackoverflow.com/questions/605845/do-i-cast-the-result-of-malloc Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'lib/setproctitle.c')
-rw-r--r--lib/setproctitle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setproctitle.c b/lib/setproctitle.c
index 4bcf8c8a9..93bc82e47 100644
--- a/lib/setproctitle.c
+++ b/lib/setproctitle.c
@@ -33,7 +33,7 @@ void initproctitle (int argc, char **argv)
for (i = 0; envp[i] != NULL; i++)
continue;
- environ = (char **) malloc(sizeof(char *) * (i + 1));
+ environ = malloc(sizeof(char *) * (i + 1));
if (environ == NULL)
return;