From: Marcin Slusarz Date: Sun, 10 Feb 2008 10:33:08 +0000 (+0100) Subject: udf: super.c reorganization X-Git-Tag: v2.6.26-rc1~1108^2~20 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=165923fa4590b0eb77bec31af383ea16b2d5868f;p=pandora-kernel.git udf: super.c reorganization reorganize few code blocks in super.c which were needlessly indented (and hard to read): so change from: rettype fun() { init; if (sth) { long block of code; } } to: rettype fun() { init; if (!sth) return; long block of code; } or from: rettype fun2() { init; while (sth) { init2(); if (sth2) { long block of code; } } } to: rettype fun2() { init; while (sth) { init2(); if (!sth2) continue; long block of code; } } Signed-off-by: Marcin Slusarz Signed-off-by: Jan Kara --- Reading git-diff-tree failed