1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

roots: make it build with clang

Remove an unnecessary cast that was breaking namespace lookup for clang.

Closes: #159

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell 2020-12-17 16:43:15 -05:00
parent 62a20ebf9c
commit bbaf55b2b0

View File

@ -1011,7 +1011,7 @@ BeesCrawl::fetch_extents()
// Lock in the old state // Lock in the old state
set_state(old_state); set_state(old_state);
BEESTRACE("Searching crawl sk " << static_cast<btrfs_ioctl_search_key&>(sk)); BEESTRACE("Searching crawl sk " << sk);
bool ioctl_ok = false; bool ioctl_ok = false;
{ {
BEESNOTE("searching crawl sk " << static_cast<btrfs_ioctl_search_key&>(sk)); BEESNOTE("searching crawl sk " << static_cast<btrfs_ioctl_search_key&>(sk));