Remove unused variable in mod_rtmp

Unused variables break the build with recent versions of gcc and
clang.
This commit is contained in:
Travis Cross 2013-05-26 04:53:16 +00:00
parent 04c3b913aa
commit 065043ce67
1 changed files with 1 additions and 1 deletions

View File

@ -1230,7 +1230,7 @@ switch_status_t rtmp_session_login(rtmp_session_t *rsession, const char *user, c
switch_status_t rtmp_session_logout(rtmp_session_t *rsession, const char *user, const char *domain)
{
rtmp_account_t *account, *prev = NULL;
rtmp_account_t *account;
switch_event_t *event;
switch_thread_rwlock_wrlock(rsession->account_rwlock);