Commit 1d706679 authored by Saurav Girepunje's avatar Saurav Girepunje Committed by Linus Torvalds
Browse files

fs/buffer.c: fix use true/false for bool type

parent 188c523e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1423,10 +1423,10 @@ static bool has_bh_in_lru(int cpu, void *dummy)
	
	for (i = 0; i < BH_LRU_SIZE; i++) {
		if (b->bhs[i])
			return 1;
			return true;
	}

	return 0;
	return false;
}

void invalidate_bh_lrus(void)