From 3dcea60f5b5b390b8cf95085a85e3e65af26133d Mon Sep 17 00:00:00 2001 From: Sébastien Marie Date: Thu, 3 Mar 2022 09:27:10 +0000 Subject: vendor: ENet: follow strict-style and remove optional semi-colon --- vendor/ENet/unix.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/ENet/unix.odin b/vendor/ENet/unix.odin index a86e9837c..05ce41e05 100644 --- a/vendor/ENet/unix.odin +++ b/vendor/ENet/unix.odin @@ -14,7 +14,7 @@ import "core:c" @(private="file") FD_ZERO :: #force_inline proc(s: ^fd_set) { for i := size_of(fd_set) / size_of(c.long); i != 0; i -= 1 { - s.fds_bits[i] = 0; + s.fds_bits[i] = 0 } } -- cgit v1.2.3