Просмотр исходного кода

Trim trailing spaces of components/libc/posix/io/poll/poll.c

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Yonggang Luo 3 месяцев назад
Родитель
Сommit
78dfa1fd9a
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      components/libc/posix/io/poll/poll.c

+ 3 - 3
components/libc/posix/io/poll/poll.c

@@ -23,7 +23,7 @@
 #include "poll.h"
 #include "poll.h"
 
 
 
 
-enum rt_poll_status 
+enum rt_poll_status
 {
 {
     RT_POLL_STAT_INIT,     /**< Poll operation initialization status. */
     RT_POLL_STAT_INIT,     /**< Poll operation initialization status. */
     RT_POLL_STAT_TRIG,     /**< Poll operation triggered status. */
     RT_POLL_STAT_TRIG,     /**< Poll operation triggered status. */
@@ -31,7 +31,7 @@ enum rt_poll_status
 };
 };
 
 
 
 
-struct rt_poll_table 
+struct rt_poll_table
 {
 {
     rt_pollreq_t req;               /**< Poll request. */
     rt_pollreq_t req;               /**< Poll request. */
     enum rt_poll_status status;     /**< Status of the poll operation. */
     enum rt_poll_status status;     /**< Status of the poll operation. */
@@ -40,7 +40,7 @@ struct rt_poll_table
 };
 };
 
 
 
 
-struct rt_poll_node 
+struct rt_poll_node
 {
 {
     struct rt_wqueue_node wqn;     /**< Wait queue node for the poll node. */
     struct rt_wqueue_node wqn;     /**< Wait queue node for the poll node. */
     struct rt_poll_table *pt;       /**< Pointer to the parent poll table. */
     struct rt_poll_table *pt;       /**< Pointer to the parent poll table. */