commit | c4cf3ba4f34819170fee43532f729e2fc6aa9a76 | [log] [tgz] |
---|---|---|
author | Himangi Saraogi <himangi774@gmail.com> | Fri Jun 27 01:11:59 2014 +0530 |
committer | Tyler Hicks <tyhicks@canonical.com> | Thu Jul 03 16:37:56 2014 -0500 |
tree | 12babcdb754b30162abf9c74bf83bb0153aabb59 | |
parent | 9e78d14a9f641c0476f733f6fc559ba5cac6f52b [diff] |
ecryptfs: Drop cast 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 ) Signed-off-by: Himangi Saraogi <himangi774@gmail.com> Signed-off-by: Tyler Hicks <tyhicks@canonical.com>