From 636882316b5191931e144212d93665c10859ac95 Mon Sep 17 00:00:00 2001
From: Steven Le Rouzic <steven.lerouzic@gmail.com>
Date: Fri, 7 Mar 2025 00:00:43 +0100
Subject: Some work on clang-tidy-ing things up

---
 asl/io/print.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'asl/io/print.cpp')

diff --git a/asl/io/print.cpp b/asl/io/print.cpp
index 5b48eef..173b3f7 100644
--- a/asl/io/print.cpp
+++ b/asl/io/print.cpp
@@ -18,7 +18,7 @@ public:
 
     void write(asl::span<const asl::byte> s) override
     {
-        fwrite(s.data(), 1, static_cast<size_t>(s.size()), m_handle);
+        (void)fwrite(s.data(), 1, static_cast<size_t>(s.size()), m_handle);
     }
 };
 
-- 
cgit