summaryrefslogtreecommitdiff
path: root/gpsmon.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2009-02-19 09:54:35 +0000
committerEric S. Raymond <esr@thyrsus.com>2009-02-19 09:54:35 +0000
commit7fa130165bfea34dc8306d5776d8496b001813e4 (patch)
tree15068a108259c6a408dde7916be1659c2d811eef /gpsmon.h
parent744a39384961046e4046a160e5550ec527d61cb8 (diff)
downloadgpsd-7fa130165bfea34dc8306d5776d8496b001813e4.tar.gz
Simplify the packet-monitor driver interface.
Diffstat (limited to 'gpsmon.h')
-rw-r--r--gpsmon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpsmon.h b/gpsmon.h
index d7ac826b..a6e938b5 100644
--- a/gpsmon.h
+++ b/gpsmon.h
@@ -7,7 +7,7 @@
struct monitor_object_t {
/* a device-specific capability table for the monitor */
bool (*initialize)(void); /* paint legends on windows */
- void (*update)(size_t); /* now paint the data */
+ void (*update)(void); /* now paint the data */
int (*command)(char[]); /* interpret device-specfic commands */
void (*wrap)(void); /* deallocate storage */
int min_y, min_x; /* space required for device info */