gpsd-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gpsd-dev] [PATCH] "Not available" not fit in width.


From: Michael Tatarinov
Subject: [gpsd-dev] [PATCH] "Not available" not fit in width.
Date: Tue, 11 Mar 2014 15:23:16 +0400

Signed-off-by: Michael Tatarinov <address@hidden>
---
 monitor_nmea.c   | 2 +-
 monitor_oncore.c | 2 +-
 monitor_sirf.c   | 2 +-
 monitor_ubx.c    | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/monitor_nmea.c b/monitor_nmea.c
index e108a40..c513152 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 40346f1..d07f86a 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 2e54a64..2e825cb 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 04f487b..76c46a9 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);
-- 
1.8.5.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]