Skip to content

Commit

Permalink
fix: missing newline end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Nov 27, 2023
1 parent ecc07b7 commit 2a9d68c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/system/emscripten/network.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ size_t _z_send_ws(const _z_sys_net_socket_t sock, const uint8_t *ptr, size_t len

#if Z_FEATURE_RAWETH_TRANSPORT == 1
#error "Raw ethernet transport not supported yet on Emscripten port of Zenoh-Pico"
#endif
#endif
2 changes: 1 addition & 1 deletion src/system/espidf/network.c
Original file line number Diff line number Diff line change
Expand Up @@ -742,4 +742,4 @@ size_t _z_send_serial(const _z_sys_net_socket_t sock, const uint8_t *ptr, size_t

#if Z_FEATURE_RAWETH_TRANSPORT == 1
#error "Raw ethernet transport not supported yet on ESP-IDF port of Zenoh-Pico"
#endif
#endif
2 changes: 1 addition & 1 deletion src/system/mbed/network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -487,4 +487,4 @@ size_t _z_send_serial(const _z_sys_net_socket_t sock, const uint8_t *ptr, size_t
#error "Raw ethernet transport not supported yet on MBED port of Zenoh-Pico"
#endif

} // extern "C"
} // extern "C"
2 changes: 1 addition & 1 deletion src/system/unix/link/raweth.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ size_t _z_receive_raweth(const _z_sys_net_socket_t *sock, void *buff, size_t buf
return bytesRead;
}

#endif
#endif
2 changes: 1 addition & 1 deletion src/system/windows/network.c
Original file line number Diff line number Diff line change
Expand Up @@ -613,4 +613,4 @@ size_t _z_send_udp_multicast(const _z_sys_net_socket_t sock, const uint8_t *ptr,

#if Z_FEATURE_RAWETH_TRANSPORT == 1
#error "Raw ethernet transport not supported yet on Windows port of Zenoh-Pico"
#endif
#endif
2 changes: 1 addition & 1 deletion src/transport/raweth/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ const _zp_raweth_cfg_entry _ZP_RAWETH_CFG_ARRAY[] = {
// Don't modify
const size_t _ZP_RAWETH_CFG_SIZE = _ZP_ARRAY_SIZE(_ZP_RAWETH_CFG_ARRAY);

#endif // Z_FEATURE_RAWETH_TRANSPORT == 1
#endif // Z_FEATURE_RAWETH_TRANSPORT == 1
2 changes: 1 addition & 1 deletion src/transport/raweth/rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -362,4 +362,4 @@ int8_t _z_raweth_handle_transport_message(_z_transport_multicast_t *ztm, _z_tran
_ZP_UNUSED(addr);
return _Z_ERR_TRANSPORT_NOT_AVAILABLE;
}
#endif // Z_FEATURE_RAWETH_TRANSPORT == 1
#endif // Z_FEATURE_RAWETH_TRANSPORT == 1
2 changes: 1 addition & 1 deletion src/transport/raweth/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,4 +301,4 @@ int8_t _z_raweth_send_n_msg(_z_session_t *zn, const _z_network_message_t *n_msg,
_ZP_UNUSED(cong_ctrl);
return _Z_ERR_TRANSPORT_NOT_AVAILABLE;
}
#endif // Z_FEATURE_RAWETH_TRANSPORT == 1
#endif // Z_FEATURE_RAWETH_TRANSPORT == 1

0 comments on commit 2a9d68c

Please sign in to comment.