commit | 296200d3bb649f9646f60abe6e8ebb9fd8d20f4b | [log] [tgz] |
---|---|---|
author | Jérémy Lefaure <jeremy.lefaure@lse.epita.fr> | Sun Oct 01 15:30:48 2017 -0400 |
committer | Mike Marshall <hubcap@omnibond.com> | Mon Nov 13 15:09:58 2017 -0500 |
tree | d47aaf3f3608f15a4d2f747e3bf13d82b7d5454d | |
parent | 933f7ac1a1df37ab6b25b50a85c13fcc5ea8cd03 [diff] |
orangefs: use ARRAY_SIZE Using the ARRAY_SIZE macro improves the readability of the code. Found with Coccinelle with the following semantic patch: @r depends on (org || report)@ type T; T[] E; position p; @@ ( (sizeof(E)@p /sizeof(*E)) | (sizeof(E)@p /sizeof(E[...])) | (sizeof(E)@p /sizeof(T)) ) Signed-off-by: Jérémy Lefaure <jeremy.lefaure@lse.epita.fr> Signed-off-by: Mike Marshall <hubcap@omnibond.com>