• M
    udf: super.c reorganization · 165923fa
    Marcin Slusarz 提交于
    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: NMarcin Slusarz <marcin.slusarz@gmail.com>
    Signed-off-by: NJan Kara <jack@suse.cz>
    165923fa
super.c 53.7 KB