Skip to content

Commit

Permalink
chore: missing line ending
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Nov 13, 2023
1 parent da7c330 commit e452b2c
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/common/read.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
int8_t _z_read(_z_transport_t *zt);
void *_zp_read_task(void *zt_arg); // The argument is void* to avoid incompatible pointer types in tasks

#endif /* ZENOH_PICO_TRANSPORT_READ_H */
#endif /* ZENOH_PICO_TRANSPORT_READ_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/common/rx.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
/*------------------ Transmission and Reception helpers ------------------*/
int8_t _z_link_recv_t_msg(_z_transport_message_t *t_msg, const _z_link_t *zl);

#endif /* ZENOH_PICO_TRANSPORT_RX_H */
#endif /* ZENOH_PICO_TRANSPORT_RX_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/multicast.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ bool _zp_is_multicast_here(void);
void _zp_multicast_fetch_zid(const _z_transport_t *zt, z_owned_closure_zid_t *callback);
void _zp_multicast_info_session(const _z_transport_t *zt, _z_config_t *ps);

#endif /* ZENOH_PICO_MULTICAST_H */
#endif /* ZENOH_PICO_MULTICAST_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/multicast/read.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ int _zp_multicast_start_read_task(_z_transport_t *zt, _z_task_attr_t *attr, _z_t
int _zp_multicast_stop_read_task(_z_transport_t *zt);
void *_zp_multicast_read_task(void *ztm_arg); // The argument is void* to avoid incompatible pointer types in tasks

#endif /* ZENOH_PICO_TRANSPORT_LINK_TASK_READ_H */
#endif /* ZENOH_PICO_TRANSPORT_LINK_TASK_READ_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/multicast/rx.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ int8_t _z_multicast_recv_t_msg_na(_z_transport_multicast_t *ztm, _z_transport_me
int8_t _z_multicast_handle_transport_message(_z_transport_multicast_t *ztm, _z_transport_message_t *t_msg,
_z_bytes_t *addr);

#endif /* ZENOH_PICO_TRANSPORT_LINK_RX_H */
#endif /* ZENOH_PICO_TRANSPORT_LINK_RX_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/multicast/transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ int8_t _z_multicast_open_client(_z_transport_multicast_establish_param_t *param,
int8_t _z_multicast_send_close(_z_transport_multicast_t *ztm, uint8_t reason, _Bool link_only);
int8_t _z_multicast_transport_close(_z_transport_multicast_t *ztm, uint8_t reason);
void _z_multicast_transport_clear(_z_transport_t *zt);
#endif /* ZENOH_PICO_MULTICAST_TRANSPORT_H */
#endif /* ZENOH_PICO_MULTICAST_TRANSPORT_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/unicast.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ bool _zp_is_unicast_here(void);
void _zp_unicast_fetch_zid(const _z_transport_t *zt, z_owned_closure_zid_t *callback);
void _zp_unicast_info_session(const _z_transport_t *zt, _z_config_t *ps);

#endif /* ZENOH_PICO_UNICAST_H */
#endif /* ZENOH_PICO_UNICAST_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/unicast/read.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ int _zp_unicast_start_read_task(_z_transport_t *zt, _z_task_attr_t *attr, _z_tas
int _zp_unicast_stop_read_task(_z_transport_t *zt);
void *_zp_unicast_read_task(void *ztu_arg); // The argument is void* to avoid incompatible pointer types in tasks

#endif /* ZENOH_PICO_UNICAST_READ_H */
#endif /* ZENOH_PICO_UNICAST_READ_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/unicast/rx.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ int8_t _z_unicast_recv_t_msg(_z_transport_unicast_t *ztu, _z_transport_message_t
int8_t _z_unicast_recv_t_msg_na(_z_transport_unicast_t *ztu, _z_transport_message_t *t_msg);
int8_t _z_unicast_handle_transport_message(_z_transport_unicast_t *ztu, _z_transport_message_t *t_msg);

#endif /* ZENOH_PICO_UNICAST_RX_H */
#endif /* ZENOH_PICO_UNICAST_RX_H */
2 changes: 1 addition & 1 deletion include/zenoh-pico/transport/unicast/transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ int8_t _z_unicast_open_peer(_z_transport_unicast_establish_param_t *param, const
int8_t _z_unicast_send_close(_z_transport_unicast_t *ztu, uint8_t reason, _Bool link_only);
int8_t _z_unicast_transport_close(_z_transport_unicast_t *ztu, uint8_t reason);
void _z_unicast_transport_clear(_z_transport_t *zt);
#endif /* ZENOH_PICO_UNICAST_TRANSPORT_H */
#endif /* ZENOH_PICO_UNICAST_TRANSPORT_H */
2 changes: 1 addition & 1 deletion src/transport/multicast.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ void _zp_multicast_info_session(const _z_transport_t *zt, _z_config_t *ps) {
_ZP_UNUSED(zt);
_ZP_UNUSED(ps);
}
#endif // Z_FEATURE_MULTICAST_TRANSPORT == 1
#endif // Z_FEATURE_MULTICAST_TRANSPORT == 1
2 changes: 1 addition & 1 deletion src/transport/multicast/transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,4 +227,4 @@ int8_t _z_multicast_transport_close(_z_transport_multicast_t *ztm, uint8_t reaso
}

void _z_multicast_transport_clear(_z_transport_t *zt) { _ZP_UNUSED(zt); }
#endif // Z_FEATURE_MULTICAST_TRANSPORT == 1
#endif // Z_FEATURE_MULTICAST_TRANSPORT == 1
2 changes: 1 addition & 1 deletion src/transport/unicast/transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,4 +314,4 @@ int8_t _z_unicast_transport_close(_z_transport_unicast_t *ztu, uint8_t reason) {

void _z_unicast_transport_clear(_z_transport_t *zt) { _ZP_UNUSED(zt); }

#endif // Z_FEATURE_UNICAST_TRANSPORT == 1
#endif // Z_FEATURE_UNICAST_TRANSPORT == 1

0 comments on commit e452b2c

Please sign in to comment.