Skip to content

Commit 9584b6d

Browse files
committed
Trim trailing spaces of components/libc/posix/io/poll/poll.c
Signed-off-by: Yonggang Luo <[email protected]>
1 parent db1779e commit 9584b6d

File tree

1 file changed

+3
-3
lines changed
  • components/libc/posix/io/poll

1 file changed

+3
-3
lines changed

components/libc/posix/io/poll/poll.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
#include "poll.h"
2424

2525

26-
enum rt_poll_status
26+
enum rt_poll_status
2727
{
2828
RT_POLL_STAT_INIT, /**< Poll operation initialization status. */
2929
RT_POLL_STAT_TRIG, /**< Poll operation triggered status. */
3030
RT_POLL_STAT_WAITING /**< Poll operation waiting status. */
3131
};
3232

3333

34-
struct rt_poll_table
34+
struct rt_poll_table
3535
{
3636
rt_pollreq_t req; /**< Poll request. */
3737
enum rt_poll_status status; /**< Status of the poll operation. */
@@ -40,7 +40,7 @@ struct rt_poll_table
4040
};
4141

4242

43-
struct rt_poll_node
43+
struct rt_poll_node
4444
{
4545
struct rt_wqueue_node wqn; /**< Wait queue node for the poll node. */
4646
struct rt_poll_table *pt; /**< Pointer to the parent poll table. */

0 commit comments

Comments
 (0)