summaryrefslogtreecommitdiff
path: root/cgps.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2005-08-18 06:59:46 +0000
committerGary E. Miller <gem@rellim.com>2005-08-18 06:59:46 +0000
commit3e618180e62bfb7e4d4b79df325ed00e1fc67841 (patch)
tree103e705cbb3f8d83a6afcca899fe8fc1f73870b3 /cgps.c
parent660aa38773f8a9b06b4c657853ca2712bf6be934 (diff)
downloadgpsd-3e618180e62bfb7e4d4b79df325ed00e1fc67841.tar.gz
Fix typo that clobbered the 5th sat data line.
Diffstat (limited to 'cgps.c')
-rw-r--r--cgps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgps.c b/cgps.c
index 5f921efd..7c85910c 100644
--- a/cgps.c
+++ b/cgps.c
@@ -177,7 +177,7 @@ static void update_panel(struct gps_data_t *gpsdata,
/* Fill in the heading. */
if (gpsdata->fix.mode >= MODE_2D && isnan(gpsdata->fix.track)==0) {
(void)move(5,17);
- (void)printw("%.1f degrees \n", gpsdata->fix.track);
+ (void)printw("%.1f degrees ", gpsdata->fix.track);
} else {
(void)move(5,17);
(void)printw("n/a ");