Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/dialects/linux/dproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ struct l_fdinfo {

#define EPOLL_MAX_TFDS 32
int tfds[EPOLL_MAX_TFDS];
size_t tfd_count;
int tfd_count;

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think ssize_t is better? Then the struct size is unchanged, so the ABI is compatible.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will try once I have a time 🫡

};

/*
Expand Down
Loading