diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2009-02-16 19:11:14 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2009-02-16 19:11:14 +0000 |
commit | c746a49444a73e372876cb530bd3f11fcea45ee0 (patch) | |
tree | ffe6c720aecbe38c7f3072b1274990f234ab9173 /gpsmon.h | |
parent | cde3d327ee2b5bd34f01f58433090f9312cf655d (diff) | |
download | gpsd-c746a49444a73e372876cb530bd3f11fcea45ee0.tar.gz |
Simplify the repaint interface.
Diffstat (limited to 'gpsmon.h')
-rw-r--r-- | gpsmon.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ struct mdevice_t { /* a device-specific capability table for the monitor */ bool (*initialize)(void); /* paint legends on windows */ void (*analyze)(unsigned char [], size_t); - void (*repaint)(bool); /* now paint the data */ + void (*repaint)(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 */ |