aboutsummaryrefslogtreecommitdiff
path: root/block
diff options
context:
space:
mode:
authorMarcin Slusarz <marcin.slusarz@gmail.com>2008-02-10 11:33:08 +0100
committerJan Kara <jack@suse.cz>2008-04-17 14:22:45 +0200
commit165923fa4590b0eb77bec31af383ea16b2d5868f (patch)
tree10b05d436c73e5392efc85eb918138d863ad3f28 /block
parentaf15a298a49c9b5844cdaf70e10eb808e54ead2c (diff)
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 <marcin.slusarz@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'block')
0 files changed, 0 insertions, 0 deletions