summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Tatarinov <kukabu@gmail.com>2014-05-19 09:08:28 +0400
committerEric S. Raymond <esr@thyrsus.com>2014-05-20 04:39:51 -0400
commit4f35e720288bb67e918c065cebcb177b088e0e4f (patch)
tree04e04d1a610dc2d97d75cabf61dbfe47eb616348
parent35d91bab6396f31d45ec1e9485770803d992d986 (diff)
downloadgpsd-4f35e720288bb67e918c065cebcb177b088e0e4f.tar.gz
"Not available" is too long and doesn't fit in window.
Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
-rw-r--r--monitor_nmea.c2
-rw-r--r--monitor_oncore.c2
-rw-r--r--monitor_sirf.c2
-rw-r--r--monitor_ubx.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/monitor_nmea.c b/monitor_nmea.c
index e108a407..88fb59f5 100644
--- a/monitor_nmea.c
+++ b/monitor_nmea.c
@@ -94,7 +94,7 @@ static bool nmea_initialize(void)
(void)mvwprintw(gpgsawin, 3, 1, "DOP: H= V= P=");
(void)mvwprintw(gpgsawin, 4, 1, "PPS offset: ");
#ifndef PPS_ENABLE
- (void)mvwaddstr(gpgsawin, 4, 13, "Not available");
+ (void)mvwaddstr(gpgsawin, 4, 13, "N/A");
#endif /* PPS_ENABLE */
(void)mvwprintw(gpgsawin, 5, 9, " GSA + PPS ");
(void)wattrset(gpgsawin, A_NORMAL);
diff --git a/monitor_oncore.c b/monitor_oncore.c
index 40346f15..3d97e41c 100644
--- a/monitor_oncore.c
+++ b/monitor_oncore.c
@@ -151,7 +151,7 @@ static bool oncore_initialize(void)
(void)wattrset(Aywin, A_BOLD);
(void)mvwprintw(Aywin, 1, 1, "PPS offset:");
#ifndef PPS_ENABLE
- (void)mvwaddstr(Aywin, 1, 13, "Not available");
+ (void)mvwaddstr(Aywin, 1, 13, "N/A");
#endif /* PPS_ENABLE */
(void)mvwprintw(Aywin, 3, 4, " @@Ay ");
(void)wattrset(Aywin, A_NORMAL);
diff --git a/monitor_sirf.c b/monitor_sirf.c
index 2e54a648..67ef297e 100644
--- a/monitor_sirf.c
+++ b/monitor_sirf.c
@@ -172,7 +172,7 @@ static bool sirf_initialize(void)
display(mid7win, 2, 1, "Est. GPS Time: ");
display(mid7win, 2, 27, "PPS offset: ");
#ifndef PPS_ENABLE
- (void)mvwaddstr(mid7win, 2, 40, "Not available");
+ (void)mvwaddstr(mid7win, 2, 40, "N/A");
#endif /* PPS_ENABLE */
display(mid7win, 3, 8, " Packet type 7 (0x07) ");
(void)wattrset(mid7win, A_NORMAL);
diff --git a/monitor_ubx.c b/monitor_ubx.c
index 04f487b2..ff89e74a 100644
--- a/monitor_ubx.c
+++ b/monitor_ubx.c
@@ -76,7 +76,7 @@ static bool ubx_initialize(void)
(void)wattrset(ppswin, A_BOLD);
(void)mvwaddstr(ppswin, 1, 1, "PPS offset: ");
#ifndef PPS_ENABLE
- (void)mvwaddstr(ppswin, 1, 13, "Not available");
+ (void)mvwaddstr(ppswin, 1, 13, "N/A");
#endif /* PPS_ENABLE */
display(ppswin, 2, 22, " PPS ");
(void)wattrset(ppswin, A_NORMAL);