diff options
Diffstat (limited to '')
-rw-r--r-- | src/bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -179,9 +179,9 @@ int bus_write(const bus_t *bus, const char *message); int bus_read(const bus_t *bus, int (*callback)(const char *message, void *user_data), void *user_data); -int bus_poll_start(const bus_t *bus); +int bus_poll_start(bus_t *bus); int bus_poll_stop(const bus_t *bus); -const char *bus_poll(const bus_t *bus); +const char *bus_poll(bus_t *bus); |