Tag: 3cfc537aea3fe442f31d16fd641bf8bff56c6acd

staging: lustre: libcfs: put constant on the right of binary operator

Author: Julia Lawall <Julia.Lawall@lip6.fr> Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( – c + e b – e + c | – c < e + …

Continue reading