Fix formatting

This commit is contained in:
seajee
2025-11-10 17:55:10 +01:00
parent 440a18edc6
commit 8c0ccb628e

8
sock.h
View File

@@ -214,10 +214,10 @@ typedef enum {
} SockType;
typedef struct {
SockType type; // Socket type
SockAddr addr; // Socket address
int fd; // File descriptor
int last_errno; // Last error about this socket
SockType type; // Socket type
SockAddr addr; // Socket address
int fd; // File descriptor
int last_errno; // Last error about this socket
} Sock;
typedef void (*SockThreadCallback)(Sock *sock, void *user_data);