diff options
| author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-10-10 09:14:07 +0000 | 
|---|---|---|
| committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-10-10 09:14:07 +0000 | 
| commit | 86898be87d24991e48d783b3e20696ff1ce62abc (patch) | |
| tree | e39dd85336e78c690daf376d8e0bdcc4cb8ba109 | |
| parent | d0f7d2f3742cbd962a4e8ca7f982185fd07a424e (diff) | |
Fix warning caused by previous patch
| -rw-r--r-- | audio/a2dp.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/audio/a2dp.c b/audio/a2dp.c index e2aeedfd..b6f0c627 100644 --- a/audio/a2dp.c +++ b/audio/a2dp.c @@ -683,7 +683,7 @@ static gboolean suspend_ind(struct avdtp *session, struct avdtp_local_sep *sep,  	if (a2dp_sep->suspend_timer) {  		g_source_remove(a2dp_sep->suspend_timer); -		a2dp_sep->suspend_timer = NULL; +		a2dp_sep->suspend_timer = 0;  	}  	return TRUE; | 
