summaryrefslogtreecommitdiffstats
path: root/include/ussd.h
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-09-01 22:27:08 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-09-01 22:27:08 -0500
commit9caa606bcc350389d31ac51b7728729aa52603ed (patch)
tree9e3d9413d83b0f24c9b78e1ee84550dbe72cfc67 /include/ussd.h
parent422df0edfb321b0905ca85b02b31cb9c824a6d9d (diff)
downloadofono-9caa606bcc350389d31ac51b7728729aa52603ed.tar.bz2
Make remove functions not return anything
Diffstat (limited to 'include/ussd.h')
-rw-r--r--include/ussd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ussd.h b/include/ussd.h
index 6f5acdad..e39e3c76 100644
--- a/include/ussd.h
+++ b/include/ussd.h
@@ -35,7 +35,7 @@ typedef void (*ofono_ussd_cb_t)(const struct ofono_error *error, void *data);
struct ofono_ussd_driver {
const char *name;
int (*probe)(struct ofono_ussd *ussd, unsigned int vendor, void *data);
- int (*remove)(struct ofono_ussd *ussd);
+ void (*remove)(struct ofono_ussd *ussd);
void (*request)(struct ofono_ussd *ussd, const char *str,
ofono_ussd_cb_t, void *data);
void (*cancel)(struct ofono_ussd *ussd,