diff options
author | Marcin Slusarz <marcin.slusarz@gmail.com> | 2008-02-10 11:33:08 +0100 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2008-04-17 14:22:45 +0200 |
commit | 165923fa4590b0eb77bec31af383ea16b2d5868f (patch) | |
tree | 10b05d436c73e5392efc85eb918138d863ad3f28 /crypto/wp512.c | |
parent | af15a298a49c9b5844cdaf70e10eb808e54ead2c (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 'crypto/wp512.c')
0 files changed, 0 insertions, 0 deletions