diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-09-12 09:01:05 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-09-12 09:01:05 +0200 |
commit | 75719f0c01f29b24413ec21a1be7f14cfa2f311e (patch) | |
tree | e5b4cd13fbeb581dddf69ecaa64946a0ada94b85 /src | |
parent | 4a4143d0945d3a7b30319d1e6a007c7048d11966 (diff) | |
download | ofono-75719f0c01f29b24413ec21a1be7f14cfa2f311e.tar.bz2 |
Fix compilation error with missing return value
Diffstat (limited to 'src')
-rw-r--r-- | src/network.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network.c b/src/network.c index 3431fba3..bcac56b8 100644 --- a/src/network.c +++ b/src/network.c @@ -931,7 +931,8 @@ gboolean __ofono_netreg_remove_status_watch(struct ofono_netreg *netreg, unsigned int id) { DBG("%p", netreg); - __ofono_watchlist_remove_item(netreg->status_watches, id); + + return __ofono_watchlist_remove_item(netreg->status_watches, id); } static void notify_status_watches(struct ofono_netreg *netreg) |