]> git.baikalelectronics.ru Git - kernel.git/commit
kernel/sys.c: fix "warning: do-while statement is not a compound statement" noise
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 15 Dec 2009 02:00:22 +0000 (18:00 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 15 Dec 2009 16:53:26 +0000 (08:53 -0800)
commite13541f2353172d66a71114619dc88c97dfc12a1
tree129800fa31f88a5f6d520a2c0d0a64273488a3fa
parent7a0631a44fa40820a645917b56f178a06c1261e2
kernel/sys.c: fix "warning: do-while statement is not a compound statement" noise

do_each_thread/while_each_thread wrap a block of code that is in this format:

for (...)
do
...
while

If curly braces do not surround the inner loop the following warning is
generated by sparse:

warning: do-while statement is not a compound statement

Fix the warning by adding the braces.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/sys.c