Tag: c4cf3ba4f34819170fee43532f729e2fc6aa9a76

ecryptfs: Drop cast

Author: Himangi Saraogi <himangi774@gmail.com> This patch does away with cast on void * and the if as it is unnecessary. The following Coccinelle semantic patch was used for making the change: @r@ expression x; void* e; type T; identifier f; @@ ( *((T *)e) | ((T *)x)[…] | ((T *)x)->f | – (T *) e …

Continue reading