fs_cache.c: gcc6 build fix

* Reindent source code, to fix gcc6
  '-Werror=misleading-indentation' warning.

Signed-off-by: Augustin Cavalier <[email protected]>
This commit is contained in:
Murai Takashi
2016-05-13 15:40:26 -04:00
committed by Augustin Cavalier
parent 1991604444
commit 43e52704ce
@@ -886,10 +886,10 @@ flush_cache_ent(cache_ent *ce)
return 0;
restart:
if (ce->clone)
data = ce->clone;
else
data = ce->data;
if (ce->clone)
data = ce->clone;
else
data = ce->data;
if (chatty_io > 2) printf("flush: %7Ld\n", ce->block_num);
ret = beos_write_phys_blocks(ce->dev, ce->block_num, data, 1, ce->bsize);