Whitespace tweaks

This commit is contained in:
XANTRONIX Development 2020-09-22 16:35:35 -04:00 committed by XANTRONIX Industrial
parent b2789a4d56
commit 84a4815708
2 changed files with 2 additions and 6 deletions

View file

@ -124,8 +124,6 @@ ssize_t patty_ax25_if_flush(patty_ax25_if *iface);
ssize_t patty_ax25_if_recv(patty_ax25_if *iface, void *buf, size_t len); ssize_t patty_ax25_if_recv(patty_ax25_if *iface, void *buf, size_t len);
ssize_t patty_ax25_if_send(patty_ax25_if *iface, ssize_t patty_ax25_if_send(patty_ax25_if *iface, const void *buf, size_t len);
const void *buf,
size_t len);
#endif /* _PATTY_AX25_IF_H */ #endif /* _PATTY_AX25_IF_H */

View file

@ -347,9 +347,7 @@ error_fill:
return -1; return -1;
} }
ssize_t patty_ax25_if_send(patty_ax25_if *iface, ssize_t patty_ax25_if_send(patty_ax25_if *iface, const void *buf, size_t len) {
const void *buf,
size_t len) {
struct promisc_frame frame; struct promisc_frame frame;
patty_ax25_if_stats *stats; patty_ax25_if_stats *stats;