summaryrefslogtreecommitdiff
path: root/src/venus_gps.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/venus_gps.c')
-rw-r--r--src/venus_gps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/venus_gps.c b/src/venus_gps.c
index 1f317a0..5f4e7b1 100644
--- a/src/venus_gps.c
+++ b/src/venus_gps.c
@@ -163,9 +163,9 @@ static int udp_send_msgs(int sd, int tty)
int err;
while (1) {
- count = read_nmea_sentence(tty, buf, sizeof(buf));
+ count = venus_read_nmea_sentence(tty, buf, sizeof(buf));
if (count <= 0) {
- log_error("read_nmea_sentence failed: quiting");
+ log_error("venus_read_nmea_sentence failed: quiting");
return -1;
}
err = send(sd, buf, count, 0);