aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-12 19:08:20 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-12 19:08:20 +0000
commit52ce70d267bb1ed2b4eebf146c57b54032757481 (patch)
tree1b33b7cfb3dfd35d6701e10046ce14d44a266e4c /main
parentecf0159ae962b311ec7c479d10f1a06002166c0b (diff)
Fix some silly formatting that made my head hurt.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@246463 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/channel.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/channel.c b/main/channel.c
index f22d8926c..3c6536811 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -5669,13 +5669,13 @@ int __ast_channel_unlock(struct ast_channel *chan, const char *filename, int lin
#endif
if (!res)
ast_debug(3, "::::==== Channel %s was unlocked\n", chan->name);
- if (res == EINVAL) {
- ast_debug(3, "::::==== Channel %s had no lock by this thread. Failed unlocking\n", chan->name);
- }
+ if (res == EINVAL) {
+ ast_debug(3, "::::==== Channel %s had no lock by this thread. Failed unlocking\n", chan->name);
}
- if (res == EPERM) {
- /* We had no lock, so okay any way*/
- ast_debug(4, "::::==== Channel %s was not locked at all \n", chan->name);
+ }
+ if (res == EPERM) {
+ /* We had no lock, so okay any way*/
+ ast_debug(4, "::::==== Channel %s was not locked at all \n", chan->name);
res = 0;
}
return res;