public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH 0/7] pan:lib: remove unnecessary type cast for malloc
@ 2015-06-15 13:22 Maninder Singh
  2015-06-16 20:02 ` Cyril Hrubis
  0 siblings, 1 reply; 2+ messages in thread
From: Maninder Singh @ 2015-06-15 13:22 UTC (permalink / raw)
  To: ltp-list@lists.sourceforge.net

Hi,

This patch set (7 patches) removes redundant type cast for malloc,
All patches Created  with following coccinelle patch:-

@@
expression E1, E2;
type T;
@@
- E1 = (T)malloc(E2)
+ E1 = malloc(E2)


Thanks,
Maninder Singh
------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-06-16 20:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-15 13:22 [LTP] [PATCH 0/7] pan:lib: remove unnecessary type cast for malloc Maninder Singh
2015-06-16 20:02 ` Cyril Hrubis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox