Whitespace tweaks
This commit is contained in:
parent
b2789a4d56
commit
84a4815708
2 changed files with 2 additions and 6 deletions
|
@ -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 */
|
||||||
|
|
4
src/if.c
4
src/if.c
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue