aboutsummaryrefslogtreecommitdiff
path: root/pan
diff options
context:
space:
mode:
authorManinder Singh <maninder1.s@samsung.com>2015-06-15 13:24:42 +0000
committerCyril Hrubis <chrubis@suse.cz>2015-06-16 21:59:53 +0200
commit6ad4eb4652c657c615af7e1817dec029ed3358fd (patch)
treee4c1f7bcd9a7878f5df7240ec3e8fcdb4daab4e5 /pan
parente5c927664577900a9dee202c42fd792e5db562a3 (diff)
pan/reporter.c: remove unnecessary malloc type cast
Signed-off-by: Maninder Singh <maninder1.s@samsung.com> Signed-off-by: Akhilesh Kumar <akhilesh.k@samsung.com>
Diffstat (limited to 'pan')
-rw-r--r--pan/reporter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pan/reporter.c b/pan/reporter.c
index 7b4a1e01e..b9ec482d4 100644
--- a/pan/reporter.c
+++ b/pan/reporter.c
@@ -100,7 +100,7 @@ static int scanner_reporter(SYM tags)
* extract tag names from data
*/
ntags = NTAGS_START;
- taglist = (char **)malloc(sizeof(char *) * ntags);
+ taglist = malloc(sizeof(char *) * ntags);
tagcount = 0;
tl = taglist;