diff options
| author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-01-20 14:43:59 +0000 | 
|---|---|---|
| committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-01-20 14:43:59 +0000 | 
| commit | f2fdd9fee9109cb0fa7f37a26acd0b1eaf2f40f2 (patch) | |
| tree | 1140b225e33ef166d7a256e7ad0efd3195161f57 /hcid/security.c | |
| parent | 72c746b089906cafd0c10880aca3fbe78198054b (diff) | |
Get rid of g_timeout_remove and g_io_remove_watch in favor for g_source_remove
Diffstat (limited to 'hcid/security.c')
| -rw-r--r-- | hcid/security.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/hcid/security.c b/hcid/security.c index ca984852..e14b98e9 100644 --- a/hcid/security.c +++ b/hcid/security.c @@ -882,7 +882,7 @@ void stop_security_manager(int hdev)  	info("Stopping security manager %d", hdev); -	g_io_remove_watch(io_data[hdev].watch_id); +	g_source_remove(io_data[hdev].watch_id);  	g_io_channel_unref(io_data[hdev].channel);  	io_data[hdev].watch_id = -1;  	io_data[hdev].channel = NULL; | 
