summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-11-09 22:39:31 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2010-12-21 20:54:32 +0100
commit87622285c39c00c78113c1338310c0841d646838 (patch)
tree2c86ecbfb4cd8a8cd3aa86373390b2bc93ce4a96 /utils
parentf4def3676c707e119c26457c4df176dbf54cedab (diff)
src: remove redundant casts
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'utils')
-rw-r--r--utils/ulog_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ulog_test.c b/utils/ulog_test.c
index 142846b..d568aa4 100644
--- a/utils/ulog_test.c
+++ b/utils/ulog_test.c
@@ -53,7 +53,7 @@ int main(int argc, char *argv[])
}
/* allocate a receive buffer */
- buf = (unsigned char *) malloc(MYBUFSIZ);
+ buf = malloc(MYBUFSIZ);
if (!buf)
exit(1);