"...0d0cea2424ae97b27447dc64a7dbfae83c036c45b403392f0e8ba.png" did not exist on "47c4f997c7bd9ab142c65950317232728b921aa0"
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>
Loading
Please register or sign in to comment