summaryrefslogtreecommitdiff
path: root/display.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2004-08-22 04:40:25 +0000
committerEric S. Raymond <esr@thyrsus.com>2004-08-22 04:40:25 +0000
commitcbd605c7a72144985e0c3f49c5a5addc8acaa81e (patch)
tree6e7e89276e22fcc31306a3e1b714e6c9d87533dc /display.c
parent6192eb6cc53678169e73d9c79f9e16dff1837d06 (diff)
downloadgpsd-cbd605c7a72144985e0c3f49c5a5addc8acaa81e.tar.gz
A big name change. The gps* and gpsd* namespaces swap places, so gps_*
names are now the *upper*-level library. This is part 1; due to a technical limitation in Subversion, the file renames have to be done in a separate commit.
Diffstat (limited to 'display.c')
-rw-r--r--display.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/display.c b/display.c
index 44a78899..0948fb78 100644
--- a/display.c
+++ b/display.c
@@ -28,7 +28,7 @@
#include "gps.h"
extern void register_canvas(Widget w, GC gc);
-extern void draw_graphics(struct gps_data *gpsdata);
+extern void draw_graphics(struct gps_data_t *gpsdata);
#define XCENTER (double)(width/2)
#define YCENTER (double)(height/2)
@@ -105,7 +105,7 @@ static void draw_arc(int x, int y, int diam)
}
-static int get_status(struct gps_data *gpsdata, int satellite)
+static int get_status(struct gps_data_t *gpsdata, int satellite)
{
int i;
int s;
@@ -133,7 +133,7 @@ static int get_status(struct gps_data *gpsdata, int satellite)
}
-void draw_graphics(struct gps_data *gpsdata)
+void draw_graphics(struct gps_data_t *gpsdata)
{
int i;
double x, y;