summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2023-02-19 10:45:56 +0000
committerChristophe Jaillet <jailletc36@apache.org>2023-02-19 10:45:56 +0000
commitb5d5d9467ccd4a16f66b8d7d1db0c9845d3209b9 (patch)
treedd9d1ca4d686b0d4f34b8e5b1c6f19d009a0faf8
parent997acb1d1757c81c31d13b78ce7ff8c7e4665062 (diff)
downloadapr-b5d5d9467ccd4a16f66b8d7d1db0c9845d3209b9.tar.gz
The 'flags' field in apr_pollset_private_t looks unused.
Remove it to save 8 bytes (on 64 bits arch) when such a struct is allocated. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1907751 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--poll/unix/select.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/poll/unix/select.c b/poll/unix/select.c
index 70df4126e..dc64770dd 100644
--- a/poll/unix/select.c
+++ b/poll/unix/select.c
@@ -188,7 +188,6 @@ struct apr_pollset_private_t
int maxfd;
apr_pollfd_t *query_set;
apr_pollfd_t *result_set;
- apr_uint32_t flags;
#ifdef NETWARE
int set_type;
#endif