summaryrefslogtreecommitdiff
path: root/cgps.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2019-02-22 19:34:55 -0800
committerGary E. Miller <gem@rellim.com>2019-02-22 19:34:55 -0800
commit548b0760f2647411d7ceb5133114bc85b9499ecd (patch)
tree2587f382f48ebeb64fc7b851155872709dc0dc5a /cgps.c
parentbc774c7dfe28734266aabc517f4a53b2ae3a43ee (diff)
downloadgpsd-548b0760f2647411d7ceb5133114bc85b9499ecd.tar.gz
cgps: Small display tweak.
Diffstat (limited to 'cgps.c')
-rw-r--r--cgps.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cgps.c b/cgps.c
index 6ed3f02c..af570ea2 100644
--- a/cgps.c
+++ b/cgps.c
@@ -877,8 +877,7 @@ static void update_gps_panel(struct gps_data_t *gpsdata, char *message)
/* Fill in the estimated speed error, EPS. */
ep_str = ep_to_str(gpsdata->fix.eps, speedfactor, speedunits);
(void)mvwprintw(datawin, row++, DATAWIN_VALUE_OFFSET + 8,
- " %-*s", 12,
- ep_str);
+ "%-*s", 12, ep_str);
/* Fill in the estimated track error, EPD. */
ep_str = ep_to_str(gpsdata->fix.epd, speedfactor, "deg");