From 5dea7f5f748ebee66673d470c3c183ff76b032c1 Mon Sep 17 00:00:00 2001 From: James Maki Date: Fri, 14 May 2010 12:23:54 -0500 Subject: change close to venus_close --- src/venus_gps.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/venus_gps.c') diff --git a/src/venus_gps.c b/src/venus_gps.c index 1136d07..28491f7 100644 --- a/src/venus_gps.c +++ b/src/venus_gps.c @@ -199,8 +199,8 @@ static int gps_to_udp_client(const char *host, int port) udp_send_msgs(sd, tty); + venus_close(tty); close(sd); - close(tty); } } @@ -229,8 +229,8 @@ static int gps_to_tcp_client(const char *host, int port) exchange_data(sd, tty); + venus_close(tty); close(sd); - close(tty); } } @@ -299,8 +299,8 @@ static int gps_to_tcp_server(int port) exchange_data(sd, tty); + venus_close(tty); close(sd); - close(tty); } } @@ -335,7 +335,7 @@ static int gps_to_file(const char *file) exchange_data(fd, tty); - close(tty); + venus_close(tty); } return -1; @@ -383,7 +383,7 @@ int gps_to_serial(const char *port) exchange_data(fd, tty); - close(tty); + venus_close(tty); } return -1; @@ -765,7 +765,7 @@ int main(int argc, char *argv[]) exit(1); } - close(tty); + venus_close(tty); /* * FIXME: Support more than one mode at a time -- cgit v1.2.3