Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
Formatting: Remove invisible characters
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.asterisk.org/svn/asterisk/trunk@412180 f38db490-d61c-443f-a65b-d21fe96a405b
  • Loading branch information
oej committed Apr 11, 2014
1 parent b59adae commit 479fdd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/audiohook.c
Original file line number Diff line number Diff line change
Expand Up @@ -659,9 +659,9 @@ int ast_audiohook_remove(struct ast_channel *chan, struct ast_audiohook *audioho

if (audiohook->type == AST_AUDIOHOOK_TYPE_SPY) {
AST_LIST_REMOVE(&ast_channel_audiohooks(chan)->spy_list, audiohook, list);
} else if (audiohook->type == AST_AUDIOHOOK_TYPE_WHISPER) {
} else if (audiohook->type == AST_AUDIOHOOK_TYPE_WHISPER) {
AST_LIST_REMOVE(&ast_channel_audiohooks(chan)->whisper_list, audiohook, list);
} else if (audiohook->type == AST_AUDIOHOOK_TYPE_MANIPULATE) {
} else if (audiohook->type == AST_AUDIOHOOK_TYPE_MANIPULATE) {
AST_LIST_REMOVE(&ast_channel_audiohooks(chan)->manipulate_list, audiohook, list);
}

Expand Down

0 comments on commit 479fdd6

Please sign in to comment.