Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4944178f authored by Arnd Bergmann's avatar Arnd Bergmann Committed by android-build-merger
Browse files

libceph: use BUG() instead of BUG_ON(1)

am: 290215a2

Change-Id: I57b1ea589696f8f4998ca44b73f4fbb7dfc2e5d2
parents 9fa3ad16 290215a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ static inline bool ceph_can_shift_osds(struct ceph_pg_pool_info *pool)
	case CEPH_POOL_TYPE_EC:
		return false;
	default:
		BUG_ON(1);
		BUG();
	}
}