summaryrefslogtreecommitdiff
path: root/monitor_tnt.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-11-12 17:13:27 -0500
committerEric S. Raymond <esr@thyrsus.com>2013-11-12 17:13:27 -0500
commit25c55a4c7a4ed769ac10073fb65466f31305d305 (patch)
tree1b12403252e54d58dc2eb0dd68103bc803cba61a /monitor_tnt.c
parent8eb7514a020463ffda56654de516095141ca63d3 (diff)
downloadgpsd-25c55a4c7a4ed769ac10073fb65466f31305d305.tar.gz
Rename and rationalize driver table instances. No logic changes.
Diffstat (limited to 'monitor_tnt.c')
-rw-r--r--monitor_tnt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor_tnt.c b/monitor_tnt.c
index 5a6d1331..43855504 100644
--- a/monitor_tnt.c
+++ b/monitor_tnt.c
@@ -10,7 +10,7 @@
#include "gpsmon.h"
#ifdef TNT_ENABLE
-extern const struct gps_type_t trueNorth;
+extern const struct gps_type_t driver_trueNorth;
static WINDOW *thtmwin;
@@ -101,7 +101,7 @@ const struct monitor_object_t tnt_mmt = {
.command = tnt_command,
.wrap = tnt_wrap,
.min_y = 6,.min_x = 80, /* size of the device window */
- .driver = &trueNorth,
+ .driver = &driver_trueNorth,
};
#endif /* TNT_ENABLE */