commit | bd45d54255ec1ab1ee11ae8efb01e10703c72591 | [log] [tgz] |
---|---|---|
author | Jeroen Hofstee <jeroen@myspectrum.nl> | Wed Jun 11 00:40:25 2014 +0200 |
committer | Tom Rini <trini@ti.com> | Wed Jun 11 16:27:06 2014 -0400 |
tree | bb8ed78561f41c6d67c7b17ca0c92c2707e7287a | |
parent | d017c79ac750377badfa23cea73398d25dd54fe1 [diff] |
jffs2:jffs2_1pass.c: remove double braces Clang interpretes an if condition likeĀ "if ((a = b) == NULL) as it tries to assign a value in a statement. Hence if you do "if ((something)) it warns you that you might be confused. Hence drop the double braces for plane if statements. Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>